SOLR-13808: remove redundant @Repeat

This commit is contained in:
Mikhail Khludnev 2019-12-28 23:43:37 +03:00
parent 3f29fe0b80
commit 3ae1a0b3ba

View File

@ -31,8 +31,6 @@ import org.junit.AfterClass;
import org.junit.BeforeClass; import org.junit.BeforeClass;
import org.junit.Test; import org.junit.Test;
import com.carrotsearch.randomizedtesting.annotations.Repeat;
@LuceneTestCase.SuppressCodecs({"Lucene3x","Lucene40","Lucene41","Lucene42","Lucene45","Appending"}) @LuceneTestCase.SuppressCodecs({"Lucene3x","Lucene40","Lucene41","Lucene42","Lucene45","Appending"})
public class TestJsonRequest extends SolrTestCaseHS { public class TestJsonRequest extends SolrTestCaseHS {
@ -64,7 +62,7 @@ public class TestJsonRequest extends SolrTestCaseHS {
systemClearPropertySolrDisableShardsWhitelist(); systemClearPropertySolrDisableShardsWhitelist();
} }
@Test @Repeat(iterations = 100) @Test
public void testLocalJsonRequest() throws Exception { public void testLocalJsonRequest() throws Exception {
doJsonRequest(Client.localClient, false); doJsonRequest(Client.localClient, false);
} }