aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/path_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app/path_test.go')
-rw-r--r--internal/app/path_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/app/path_test.go b/internal/app/path_test.go
index b01d73c4..1f2d8fa6 100644
--- a/internal/app/path_test.go
+++ b/internal/app/path_test.go
@@ -5,6 +5,8 @@ import (
)
func TestDeepContainsH(t *testing.T) {
+ t.Parallel()
+
testCases := []struct {
name string
basepath string
@@ -75,6 +77,7 @@ func TestDeepContainsH(t *testing.T) {
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
+ t.Parallel()
if got, err := deepContainsH(tc.basepath, tc.targpath); (err != nil) != tc.wantErr {
t.Errorf("deepContainsH() error = %v, wantErr %v", err, tc.wantErr)
} else if got != tc.want {