From cdd8f38d7129ec84868a64c0baf9c1c6aed2be75 Mon Sep 17 00:00:00 2001 From: David Kyle Date: Thu, 13 Feb 2020 13:02:21 +0000 Subject: [PATCH] Remove unneeded test PreventFailingBuildIT (#52198) Ironically PreventFailingBuildIT.testSoThatTestsDoNotFail is causing failures as documented in #52197. The no longer serves a purpose and can now be removed. --- .../smoketest/PreventFailingBuildIT.java | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 x-pack/qa/smoke-test-monitoring-with-watcher/src/test/java/org/elasticsearch/smoketest/PreventFailingBuildIT.java diff --git a/x-pack/qa/smoke-test-monitoring-with-watcher/src/test/java/org/elasticsearch/smoketest/PreventFailingBuildIT.java b/x-pack/qa/smoke-test-monitoring-with-watcher/src/test/java/org/elasticsearch/smoketest/PreventFailingBuildIT.java deleted file mode 100644 index 2c2cdd044aa..00000000000 --- a/x-pack/qa/smoke-test-monitoring-with-watcher/src/test/java/org/elasticsearch/smoketest/PreventFailingBuildIT.java +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License; - * you may not use this file except in compliance with the Elastic License. - */ -package org.elasticsearch.smoketest; - -import org.elasticsearch.test.ESIntegTestCase; - -public class PreventFailingBuildIT extends ESIntegTestCase { - - public void testSoThatTestsDoNotFail() { - // Noop - - // This is required because if tests are not enable no - // tests will be run in the entire project and all tests will fail. - } -}