Skip to content

Commit 893f8fb

Browse files
benwtrentncordon
authored andcommitted
Fixing release tests dense vector quantized formats (elastic#138376)
1 parent e1fc706 commit 893f8fb

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,9 +411,6 @@ tests:
411411
- class: org.elasticsearch.xpack.ml.integration.RegressionIT
412412
method: testTwoJobsWithSameRandomizeSeedUseSameTrainingSet
413413
issue: https://github.com/elastic/elasticsearch/issues/138319
414-
- class: org.elasticsearch.index.mapper.vectors.DenseVectorFieldMapperTests
415-
method: testKnnQuantizedFlatVectorsFormat
416-
issue: https://github.com/elastic/elasticsearch/issues/138368
417414
- class: org.elasticsearch.smoketest.SmokeTestMultiNodeClientYamlTestSuiteIT
418415
method: test {yaml=termvectors/30_realtime/Realtime Term Vectors}
419416
issue: https://github.com/elastic/elasticsearch/issues/138370

server/src/test/java/org/elasticsearch/index/mapper/vectors/DenseVectorFieldMapperTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2003,7 +2003,7 @@ public void testKnnQuantizedFlatVectorsFormat() throws IOException {
20032003
+ (quantizedFlatFormat.equals("int4_flat") ? 4 : 7)
20042004
+ ", compressed="
20052005
+ quantizedFlatFormat.equals("int4_flat")
2006-
+ ", flatVectorScorer=ESQuantizedFlatVectorsScorer("
2006+
+ ", flatVectorScorer=ESFlatVectorsScorer("
20072007
+ "delegate=ScalarQuantizedVectorScorer(nonQuantizedDelegate=DefaultFlatVectorScorer())"
20082008
+ ", factory="
20092009
+ (factory != null ? factory : "null")

0 commit comments

Comments
 (0)