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:
Robert Muir 2011-09-12 05:01:44 +00:00
parent 156a5c89ee
commit e287b70df3
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ public class TestFilteredQuery extends LuceneTestCase {
assertEquals(hits1.length, hits2.length);
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);
}
}