From 2c993b0e10d8cc107a79cd6964897c8e365db84f Mon Sep 17 00:00:00 2001 From: Carson Ip Date: Fri, 7 Jun 2024 23:52:00 +0100 Subject: [PATCH] [chore][exporter/elasticsearch] Re-enable exporter test on Windows (#33434) **Link to tracking Issue:** #10178 #14759 Co-authored-by: Curtis Robert --- exporter/elasticsearchexporter/exporter_test.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/exporter/elasticsearchexporter/exporter_test.go b/exporter/elasticsearchexporter/exporter_test.go index dc89d6d980c4..0f2e512358c3 100644 --- a/exporter/elasticsearchexporter/exporter_test.go +++ b/exporter/elasticsearchexporter/exporter_test.go @@ -24,10 +24,6 @@ import ( ) func TestExporterLogs(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("skipping test on Windows, see https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/10178") - } - t.Run("publish with success", func(t *testing.T) { rec := newBulkRecorder() server := newESTestServer(t, func(docs []itemRequest) ([]itemResponse, error) { @@ -454,10 +450,6 @@ func TestExporterLogs(t *testing.T) { } func TestExporterTraces(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("skipping test on Windows, see https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/14759") - } - t.Run("publish with success", func(t *testing.T) { rec := newBulkRecorder() server := newESTestServer(t, func(docs []itemRequest) ([]itemResponse, error) {