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:
Uwe Schindler 2014-07-16 08:53:00 +00:00
parent 3920ed571d
commit b270cdde57
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}
}
}