mirror of https://github.com/apache/lucene.git
Fix buggy test implementation (copypaste error)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1610938 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3920ed571d
commit
b270cdde57
|
@ -230,7 +230,7 @@ public class TestLazyProxSkipping extends LuceneTestCase {
|
|||
|
||||
@Override
|
||||
public IndexInput slice(String sliceDescription, long offset, long length) throws IOException {
|
||||
return new SeeksCountingStream(this.input.clone());
|
||||
return new SeeksCountingStream(this.input.slice(sliceDescription, offset, length));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue