diff --git a/examples/examples_go_test.go b/examples/examples_go_test.go index 26326097629..bf8fabf00f0 100644 --- a/examples/examples_go_test.go +++ b/examples/examples_go_test.go @@ -83,7 +83,6 @@ func TestTagsCombinationsGo(t *testing.T) { for _, tc := range testCases { tc := tc t.Run(tc.name, func(t *testing.T) { - t.Parallel() tc.s1.validateTransitionTo(t, tc.s2) }) } @@ -128,7 +127,6 @@ func TestRandomTagsCombinationsGo(t *testing.T) { for i := 0; i < 100; i++ { t.Run(fmt.Sprintf("test-%d", i), func(t *testing.T) { - t.Parallel() i := rand.Intn(len(states)) j := rand.Intn(len(states)) state1, state2 := states[i], states[j]