Skip to content

Commit

Permalink
[chore] Skip TestMRUReset until open-telemetry#34252 is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
pjanotti committed Jul 31, 2024
1 parent 20d6bae commit 794eafd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/otelarrow/compression/zstd/mru_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
package zstd

import (
"runtime"
"testing"

"github.com/stretchr/testify/require"
Expand Down Expand Up @@ -62,6 +63,10 @@ func TestMRUPut(t *testing.T) {
}

func TestMRUReset(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("skipping test on Windows, see https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/34252")
}

defer resetTest()

var m mru[*gint]
Expand Down

0 comments on commit 794eafd

Please sign in to comment.