From d431ebba6f923ae801c47c02a19e107a61210845 Mon Sep 17 00:00:00 2001 From: David Kyle Date: Fri, 23 Dec 2016 12:34:25 +0000 Subject: [PATCH] Fix compilation after upstream changes Original commit: elastic/x-pack-elasticsearch@b1cb074651dec52a1e4beaa2788b3461d2172c53 --- .../xpack/prelert/integration/PrelertYamlTestSuiteIT.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/elasticsearch/src/test/java/org/elasticsearch/xpack/prelert/integration/PrelertYamlTestSuiteIT.java b/elasticsearch/src/test/java/org/elasticsearch/xpack/prelert/integration/PrelertYamlTestSuiteIT.java index ea037836593..b88e574d1ad 100644 --- a/elasticsearch/src/test/java/org/elasticsearch/xpack/prelert/integration/PrelertYamlTestSuiteIT.java +++ b/elasticsearch/src/test/java/org/elasticsearch/xpack/prelert/integration/PrelertYamlTestSuiteIT.java @@ -8,7 +8,6 @@ package org.elasticsearch.xpack.prelert.integration; import com.carrotsearch.randomizedtesting.annotations.ParametersFactory; import org.elasticsearch.test.rest.yaml.ClientYamlTestCandidate; import org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase; -import org.elasticsearch.test.rest.yaml.parser.ClientYamlTestParseException; import org.junit.After; import java.io.IOException; @@ -21,7 +20,7 @@ public class PrelertYamlTestSuiteIT extends ESClientYamlSuiteTestCase { } @ParametersFactory - public static Iterable parameters() throws IOException, ClientYamlTestParseException { + public static Iterable parameters() throws IOException { return createParameters(); }