Skip to content

Commit 463efa1

Browse files
committed
Fix TestForTooMuchCloning (#14547)
1 parent 3c242c6 commit 463efa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lucene/core/src/test/org/apache/lucene/index/TestForTooMuchCloning.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public void test() throws Exception {
8585
// perform.
8686
assertTrue(
8787
"too many calls to IndexInput.clone during TermRangeQuery: " + queryCloneCount,
88-
queryCloneCount <= Math.max(s.getLeafContexts().size(), s.getSlices().length) * 6);
88+
queryCloneCount <= Math.max(s.getLeafContexts().size(), s.getSlices().length) * 7);
8989
r.close();
9090
dir.close();
9191
}

0 commit comments

Comments
 (0)