Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Jürgen Walter <[email protected]>
  • Loading branch information
juergen-walter committed Jan 15, 2024
1 parent 0e7c431 commit 91c2e8b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 91c2e8b

Please sign in to comment.