Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,15 +303,6 @@ tests:
- class: org.elasticsearch.xpack.inference.integration.AuthorizationTaskExecutorIT
method: testCreatesChatCompletion_AndThenCreatesTextEmbedding
issue: https://github.com/elastic/elasticsearch/issues/138012
- class: org.elasticsearch.index.query.functionscore.RandomScoreFunctionBuilderTests
method: testRandomScoreWithExplicitFieldWhenSeqNoDisabled
issue: https://github.com/elastic/elasticsearch/issues/144156
- class: org.elasticsearch.index.query.functionscore.RandomScoreFunctionBuilderTests
method: testRandomScoreWithoutFieldRequiresFieldWhenSeqNoDisabled
issue: https://github.com/elastic/elasticsearch/issues/144157
- class: org.elasticsearch.index.query.functionscore.RandomScoreFunctionBuilderTests
method: testRandomScoreWithoutSeedFallsBackToDocIdWhenSeqNoDisabled
issue: https://github.com/elastic/elasticsearch/issues/144158
- class: org.elasticsearch.xpack.inference.InferenceRestIT
method: test {p0=inference/30_semantic_text_inference/Calculates embeddings using the default ELSER 2 endpoint}
issue: https://github.com/elastic/elasticsearch/issues/144159
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ public class RandomScoreFunctionBuilderTests extends AbstractBuilderTestCase {

@Override
protected Settings createTestIndexSettings() {
assumeTrue("Test requires disable_sequence_numbers feature flag", IndexSettings.DISABLE_SEQUENCE_NUMBERS_FEATURE_FLAG);
if (IndexSettings.DISABLE_SEQUENCE_NUMBERS_FEATURE_FLAG == false) {
return super.createTestIndexSettings();
}
return Settings.builder()
.put("index.version.created", IndexVersion.current())
.put(IndexSettings.DISABLE_SEQUENCE_NUMBERS.getKey(), true)
Expand Down
Loading