fix(tests): add t.Parallel() to normalize test subtests

This commit is contained in:
Valentin Maerten
2026-01-31 13:21:32 +01:00
parent d67cba4b29
commit bbb90542f7

View File

@@ -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)
})