Skip to content

Commit c6c8fae

Browse files
committed
fix(tests): add t.Parallel() to normalize test subtests
1 parent 3e804a2 commit c6c8fae

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

task_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,7 @@ func TestNormalizeOutput(t *testing.T) {
349349
}
350350
for _, tt := range tests {
351351
t.Run(tt.name, func(t *testing.T) {
352+
t.Parallel()
352353
got := normalizeOutput(tt.input)
353354
assert.Equal(t, tt.expected, got)
354355
})
@@ -368,6 +369,7 @@ func TestNormalizePathSeparators(t *testing.T) {
368369
}
369370
for _, tt := range tests {
370371
t.Run(tt.name, func(t *testing.T) {
372+
t.Parallel()
371373
got := normalizePathSeparators(tt.input)
372374
assert.Equal(t, tt.expected, got)
373375
})

0 commit comments

Comments
 (0)