Skip to content

Commit

Permalink
Add t.Parallel() to satisfy the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
iwahbe committed Nov 14, 2022
1 parent 090ae24 commit 1afe0af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sdk/go/pulumi/types_test.go
Expand Up @@ -991,6 +991,7 @@ func TestApplyTOutputJoin(t *testing.T) {
}

func TestTypeCoersion(t *testing.T) {
t.Parallel()

tests := []struct {
input interface{}
Expand Down Expand Up @@ -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 == "" {
Expand Down

0 comments on commit 1afe0af

Please sign in to comment.