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@9cdfcc3be5
This commit is contained in:
Jason Tedor 2017-01-12 19:20:36 -05:00
parent 0136b095d0
commit d30f20212c
1 changed files with 1 additions and 7 deletions

View File

@ -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() {
}
}
}