mirror of https://github.com/apache/lucene.git
Fix of rare FC insanity during tests that have occurred in grouping & joining tests.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1363272 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b20252f777
commit
a965d6fdf7
|
@ -1048,7 +1048,7 @@ public abstract class LuceneTestCase extends Assert {
|
|||
if (r instanceof AtomicReader) {
|
||||
r = new FCInvisibleMultiReader(new AssertingAtomicReader((AtomicReader)r));
|
||||
} else if (r instanceof DirectoryReader) {
|
||||
r = new FCInvisibleMultiReader(new AssertingDirectoryReader((DirectoryReader)r));
|
||||
r = new FCInvisibleMultiReader((DirectoryReader)r);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue