We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f364c07 commit 8ca57d3Copy full SHA for 8ca57d3
1 file changed
heartbeat/scheduler/timerqueue/queue_test.go
@@ -20,7 +20,6 @@ package timerqueue
20
import (
21
"context"
22
"math/rand"
23
- "runtime"
24
"sort"
25
"testing"
26
"time"
@@ -29,9 +28,7 @@ import (
29
28
)
30
31
func TestQueueRunsInOrder(t *testing.T) {
32
- if runtime.GOOS == "windows" {
33
- t.Skip("flaky test on windows: https://github.com/elastic/beats/issues/26205")
34
- }
+ t.Skip("flaky test on windows: https://github.com/elastic/beats/issues/26205")
35
// Bugs can show up only occasionally
36
for i := 0; i < 100; i++ {
37
testQueueRunsInOrderOnce(t)
0 commit comments