uschindler commented on code in PR #13723: URL: https://github.com/apache/lucene/pull/13723#discussion_r1746885657
########## lucene/facet/src/test/org/apache/lucene/facet/taxonomy/TestTaxonomyFacetAssociations.java: ########## @@ -654,7 +654,7 @@ private void assertFloatFacetResultsEqual(List<FacetResult> expected, List<Facet assertEquals(expectedResult.dim, actualResult.dim); assertArrayEquals(expectedResult.path, actualResult.path); - assertEquals((float) expectedResult.value, (float) actualResult.value, 2e-1); + assertUlpEquals((float) expectedResult.value, (float) actualResult.value, (short) 2); Review Comment: is 2 ulps correct here? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org