From d30f20212c6f1b3fdb0b95ac67414785c77ca79b Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Thu, 12 Jan 2017 19:20:36 -0500 Subject: [PATCH] Remove unneeded dummy test This commit removes an unneeded dummy test from PreBuiltXPackTransportClientTests. The dummy test was needed when the sole test in the suite was skipped in some configuration. This test is no longer skipped though so the dummy test can be removed. Original commit: elastic/x-pack-elasticsearch@9cdfcc3be5c07ed36259bdcfc4a3c99c20dded04 --- .../xpack/client/PreBuiltXPackTransportClientTests.java | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/elasticsearch-transport-client/src/test/java/org/elasticsearch/xpack/client/PreBuiltXPackTransportClientTests.java b/elasticsearch-transport-client/src/test/java/org/elasticsearch/xpack/client/PreBuiltXPackTransportClientTests.java index 7f3c6d8f0e1..d42644bd669 100644 --- a/elasticsearch-transport-client/src/test/java/org/elasticsearch/xpack/client/PreBuiltXPackTransportClientTests.java +++ b/elasticsearch-transport-client/src/test/java/org/elasticsearch/xpack/client/PreBuiltXPackTransportClientTests.java @@ -20,7 +20,6 @@ import static org.junit.Assert.assertEquals; */ public class PreBuiltXPackTransportClientTests extends RandomizedTest { - @Test public void testPluginInstalled() { try (TransportClient client = new PreBuiltXPackTransportClient(Settings.EMPTY)) { Settings settings = client.settings(); @@ -28,9 +27,4 @@ public class PreBuiltXPackTransportClientTests extends RandomizedTest { } } - // dummy test so that the tests pass on JDK9 as the only test in this module is disabled on JDK9 - @Test - public void testDummy() { - - } -} +} \ No newline at end of file