Skip to content

Commit 60abe4a

Browse files
author
Joe Wilner
authored
Use lowercase directories (#1229)
1 parent 6550984 commit 60abe4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: test/run_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -299,12 +299,12 @@ func TestPathPrefix(t *testing.T) {
299299
Args []string
300300
Pattern string
301301
}{
302-
{"empty", nil, "^testdata/withTests/"},
303-
{"prefixed", []string{"--path-prefix=cool"}, "^cool/testdata/withTests"},
302+
{"empty", nil, "^testdata/withtests/"},
303+
{"prefixed", []string{"--path-prefix=cool"}, "^cool/testdata/withtests"},
304304
} {
305305
t.Run(tt.Name, func(t *testing.T) {
306306
testshared.NewLintRunner(t).Run(
307-
append(tt.Args, getTestDataDir("withTests"))..., //nolint:scopelint
307+
append(tt.Args, getTestDataDir("withtests"))..., //nolint:scopelint
308308
).ExpectOutputRegexp(
309309
tt.Pattern, //nolint:scopelint
310310
)

0 commit comments

Comments
 (0)