summaryrefslogtreecommitdiff
path: root/plugins/analysis-stempel
diff options
context:
space:
mode:
authorRyan Ernst <ryan@iernst.net>2016-11-07 15:07:34 -0800
committerGitHub <noreply@github.com>2016-11-07 15:07:34 -0800
commit7a2c984bcc7ce8d59900a0f8d96cbb647009273f (patch)
tree9986786358f274ddf6a40f3add647c43350e6f5c /plugins/analysis-stempel
parentf83311449211cac6f646557b84b1a711203eb45b (diff)
Test: Remove multi process support from rest test runner (#21391)
At one point in the past when moving out the rest tests from core to their own subproject, we had multiple test classes which evenly split up the tests to run. However, we simplified this and went back to a single test runner to have better reproduceability in tests. This change removes the remnants of that multiplexing support.
Diffstat (limited to 'plugins/analysis-stempel')
-rw-r--r--plugins/analysis-stempel/src/test/java/org/elasticsearch/index/analysis/StempelClientYamlTestSuiteIT.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/analysis-stempel/src/test/java/org/elasticsearch/index/analysis/StempelClientYamlTestSuiteIT.java b/plugins/analysis-stempel/src/test/java/org/elasticsearch/index/analysis/StempelClientYamlTestSuiteIT.java
index 34d264122e..56edcdb692 100644
--- a/plugins/analysis-stempel/src/test/java/org/elasticsearch/index/analysis/StempelClientYamlTestSuiteIT.java
+++ b/plugins/analysis-stempel/src/test/java/org/elasticsearch/index/analysis/StempelClientYamlTestSuiteIT.java
@@ -36,7 +36,7 @@ public class StempelClientYamlTestSuiteIT extends ESClientYamlSuiteTestCase {
@ParametersFactory
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
- return ESClientYamlSuiteTestCase.createParameters(0, 1);
+ return ESClientYamlSuiteTestCase.createParameters();
}
}