diff --git a/integ-test/src/test/java/org/opensearch/sql/ppl/InformationSchemaCommandWithGetIT.java b/integ-test/src/test/java/org/opensearch/sql/ppl/InformationSchemaCommandWithGetIT.java deleted file mode 100644 index 0a83893e3f..0000000000 --- a/integ-test/src/test/java/org/opensearch/sql/ppl/InformationSchemaCommandWithGetIT.java +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright OpenSearch Contributors - * SPDX-License-Identifier: Apache-2.0 - */ - -package org.opensearch.sql.ppl; - -import java.io.IOException; -import org.opensearch.rest.RestRequest; - -/** Run InformationSchemaCommandIT tests using http GET request */ -public class InformationSchemaCommandWithGetIT extends InformationSchemaCommandIT { - @Override - protected void init() throws InterruptedException, IOException { - super.init(); - this.method = RestRequest.Method.GET; - } -} diff --git a/integ-test/src/test/java/org/opensearch/sql/ppl/PrometheusDataSourceCommandsWithGetIT.java b/integ-test/src/test/java/org/opensearch/sql/ppl/PrometheusDataSourceCommandsWithGetIT.java deleted file mode 100644 index 04f1e5018b..0000000000 --- a/integ-test/src/test/java/org/opensearch/sql/ppl/PrometheusDataSourceCommandsWithGetIT.java +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright OpenSearch Contributors - * SPDX-License-Identifier: Apache-2.0 - */ - -package org.opensearch.sql.ppl; - -import java.io.IOException; -import org.opensearch.rest.RestRequest; - -/** Run PrometheusDataSourceCommandsIT tests using http GET request */ -public class PrometheusDataSourceCommandsWithGetIT extends PrometheusDataSourceCommandsIT { - @Override - protected void init() throws InterruptedException, IOException { - super.init(); - this.method = RestRequest.Method.GET; - } -}