Skip to content

Commit d6bafe7

Browse files
committed
Run tests
1 parent 8eeda2c commit d6bafe7

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

server/src/test/java/org/elasticsearch/index/codec/vectors/es93/ES93HnswScalarQuantizedBFloat16VectorsFormatTests.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
import org.elasticsearch.index.codec.vectors.BFloat16;
1616
import org.elasticsearch.index.codec.vectors.BaseHnswBFloat16VectorsFormatTestCase;
1717
import org.elasticsearch.index.mapper.vectors.DenseVectorFieldMapper;
18-
import org.junit.AssumptionViolatedException;
1918

2019
import java.io.IOException;
2120
import java.util.concurrent.ExecutorService;
@@ -65,11 +64,6 @@ protected KnnVectorsFormat createFormat(int maxConn, int beamWidth, int numMerge
6564
);
6665
}
6766

68-
@Override
69-
public void testSingleVectorCase() throws Exception {
70-
throw new AssumptionViolatedException("The new quantizer caps scores at 1.0");
71-
}
72-
7367
public void testSimpleOffHeapSize() throws IOException {
7468
float[] vector = randomVector(random().nextInt(12, 500));
7569
try (Directory dir = newDirectory()) {

server/src/test/java/org/elasticsearch/index/codec/vectors/es93/ES93HnswScalarQuantizedVectorsFormatTests.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import org.apache.lucene.store.Directory;
1515
import org.elasticsearch.index.codec.vectors.BaseHnswVectorsFormatTestCase;
1616
import org.elasticsearch.index.mapper.vectors.DenseVectorFieldMapper;
17-
import org.junit.AssumptionViolatedException;
1817

1918
import java.io.IOException;
2019
import java.util.concurrent.ExecutorService;
@@ -64,11 +63,6 @@ protected KnnVectorsFormat createFormat(int maxConn, int beamWidth, int numMerge
6463
);
6564
}
6665

67-
@Override
68-
public void testSingleVectorCase() throws Exception {
69-
throw new AssumptionViolatedException("The new quantizer caps scores at 1.0");
70-
}
71-
7266
public void testSimpleOffHeapSize() throws IOException {
7367
float[] vector = randomVector(random().nextInt(12, 500));
7468
try (Directory dir = newDirectory()) {

0 commit comments

Comments
 (0)