Temporarily mute TestLucene50TermVectorsFormat:testMerge (#86)

Relates to #11
This commit is contained in:
Mayya Sharipova 2021-04-15 11:43:29 -04:00 committed by GitHub
parent 873ac5f162
commit 9a346e3739
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,7 @@
*/
package org.apache.lucene.backward_codecs.lucene50;
import java.io.IOException;
import org.apache.lucene.backward_codecs.lucene87.Lucene87RWCodec;
import org.apache.lucene.codecs.Codec;
import org.apache.lucene.index.BaseTermVectorsFormatTestCase;
@ -26,4 +27,10 @@ public class TestLucene50TermVectorsFormat extends BaseTermVectorsFormatTestCase
protected Codec getCodec() {
return new Lucene87RWCodec();
}
@Override
@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/LUCENE-9334")
public void testMerge() throws IOException {
super.testMerge();
}
}