mirror of
https://github.com/go-task/task.git
synced 2026-02-24 12:10:47 +01:00
fix(tests): add t.Parallel() to normalize test subtests
This commit is contained in:
@@ -349,6 +349,7 @@ func TestNormalizeOutput(t *testing.T) {
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
t.Parallel()
|
||||
got := normalizeOutput(tt.input)
|
||||
assert.Equal(t, tt.expected, got)
|
||||
})
|
||||
@@ -368,6 +369,7 @@ func TestNormalizePathSeparators(t *testing.T) {
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
t.Parallel()
|
||||
got := normalizePathSeparators(tt.input)
|
||||
assert.Equal(t, tt.expected, got)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user