Skip to content

Commit

Permalink
Adjust test for new random quantization formats (#14058)
Browse files Browse the repository at this point in the history
  • Loading branch information
benwtrent committed Dec 12, 2024
1 parent 532ef36 commit f840462
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void testScoreNegativeDotProduct() throws IOException {
DocIdSetIterator it = scorer.iterator();
assertEquals(2, it.cost());
assertEquals(0, it.nextDoc());
assertEquals(0, scorer.score(), 0);
assertTrue(0 <= scorer.score());
assertEquals(1, it.advance(1));
assertEquals(1, scorer.score(), 0);
}
Expand Down

0 comments on commit f840462

Please sign in to comment.