add missing IR.close() in this test

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1369876 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2012-08-06 16:36:58 +00:00
parent ee280234f4
commit 3930247e77
1 changed files with 1 additions and 0 deletions

View File

@ -128,6 +128,7 @@ public class TestLazyProxSkipping extends LuceneTestCase {
// check if the number of calls of seek() does not exceed the number of hits
assertTrue(this.seeksCounter > 0);
assertTrue("seeksCounter=" + this.seeksCounter + " numHits=" + numHits, this.seeksCounter <= numHits + 1);
searcher.getIndexReader().close();
}
public void testLazySkipping() throws IOException {