mirror of https://github.com/apache/lucene.git
increase epsilon for the case where queryNorm is disabled
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1169604 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
156a5c89ee
commit
e287b70df3
|
@ -179,7 +179,7 @@ public class TestFilteredQuery extends LuceneTestCase {
|
||||||
assertEquals(hits1.length, hits2.length);
|
assertEquals(hits1.length, hits2.length);
|
||||||
|
|
||||||
for (int i = 0; i < hits1.length; i++) {
|
for (int i = 0; i < hits1.length; i++) {
|
||||||
assertEquals(hits1[i].score, hits2[i].score, 0.0000001f);
|
assertEquals(hits1[i].score, hits2[i].score, 0.000001f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue