Remove @Repeat(iterations = 1000) in tests

This commit is contained in:
Tanguy Leroux 2017-04-20 10:44:12 +02:00
parent 11da77388a
commit 2b14db9b70
1 changed files with 0 additions and 2 deletions

View File

@ -19,7 +19,6 @@
package org.elasticsearch.search.aggregations.metrics.percentiles;
import com.carrotsearch.randomizedtesting.annotations.Repeat;
import org.elasticsearch.common.xcontent.XContentType;
import org.elasticsearch.search.DocValueFormat;
import org.elasticsearch.search.aggregations.InternalAggregation;
@ -61,7 +60,6 @@ public abstract class AbstractPercentilesTestCase<T extends InternalAggregation
protected abstract Class<? extends ParsedPercentiles> implementationClass();
@Repeat(iterations = 1000)
public void testPercentilesIterators() throws IOException {
final T aggregation = createTestInstance();
final Iterable<Percentile> parsedAggregation = parse(aggregation, randomFrom(XContentType.values()), randomBoolean(), false);