diff --git a/data-prepper-plugins/opensearch/src/integrationTest/java/org/opensearch/dataprepper/plugins/sink/opensearch/OpenSearchSinkIT.java b/data-prepper-plugins/opensearch/src/integrationTest/java/org/opensearch/dataprepper/plugins/sink/opensearch/OpenSearchSinkIT.java index 5921b92851..5f58584cd2 100644 --- a/data-prepper-plugins/opensearch/src/integrationTest/java/org/opensearch/dataprepper/plugins/sink/opensearch/OpenSearchSinkIT.java +++ b/data-prepper-plugins/opensearch/src/integrationTest/java/org/opensearch/dataprepper/plugins/sink/opensearch/OpenSearchSinkIT.java @@ -220,7 +220,7 @@ public void testInstantiateSinkRawSpanDefault() throws IOException { @Test @DisabledIf(value = "isES6", disabledReason = LOG_INGESTION_TEST_DISABLED_REASON) - public void testInstantiateSinkMetricsDefault() throws IOException { + public void testInstantiateSinkMetricsDefaultLogSink() throws IOException { final PluginSetting pluginSetting = generatePluginSetting(IndexType.LOG_ANALYTICS.getValue(), null, null); OpenSearchSink sink = createObjectUnderTest(pluginSetting, true); final String indexAlias = IndexConstants.TYPE_TO_DEFAULT_ALIAS.get(IndexType.LOG_ANALYTICS); @@ -264,7 +264,7 @@ public void testInstantiateSinkMetricsDefault() throws IOException { @Test @DisabledIf(value = "isES6", disabledReason = METRIC_INGESTION_TEST_DISABLED_REASON) - public void testInstantiateSinkMetricsDefault() throws IOException { + public void testInstantiateSinkMetricsDefaultMetricSink() throws IOException { final PluginSetting pluginSetting = generatePluginSetting(IndexType.METRIC_ANALYTICS.getValue(), null, null); OpenSearchSink sink = createObjectUnderTest(pluginSetting, true); final String indexAlias = IndexConstants.TYPE_TO_DEFAULT_ALIAS.get(IndexType.METRIC_ANALYTICS);