From 1afe0af9ad42e0bbfe5994c6fead608801947823 Mon Sep 17 00:00:00 2001 From: Ian Wahbe Date: Mon, 14 Nov 2022 13:02:39 -0800 Subject: [PATCH] Add `t.Parallel()` to satisfy the linter --- sdk/go/pulumi/types_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/go/pulumi/types_test.go b/sdk/go/pulumi/types_test.go index 89f4491f3b34..43c65771f18d 100644 --- a/sdk/go/pulumi/types_test.go +++ b/sdk/go/pulumi/types_test.go @@ -991,6 +991,7 @@ func TestApplyTOutputJoin(t *testing.T) { } func TestTypeCoersion(t *testing.T) { + t.Parallel() tests := []struct { input interface{} @@ -1074,6 +1075,7 @@ func TestTypeCoersion(t *testing.T) { for _, tt := range tests { tt := tt t.Run(fmt.Sprintf("%v->%v", tt.input, tt.expected), func(t *testing.T) { + t.Parallel() dstT := reflect.TypeOf(tt.expected) val, err := coerceTypeConversion(tt.input, dstT) if tt.err == "" {