Skip to content

Commit b2cf8d6

Browse files
committed
lint fix
1 parent 14c2ad7 commit b2cf8d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/testcoverage/path/path_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func Test_NormalizePathInRegex_NoWin(t *testing.T) {
3030

3131
for _, tc := range tests {
3232
output := NormalizePathInRegex(tc.input)
33-
assert.Equal(t, tc.input, output)
33+
assert.Equal(t, tc.output, output)
3434
}
3535
}
3636

@@ -50,6 +50,6 @@ func Test_NormalizePathInRegex_Win(t *testing.T) {
5050

5151
for _, tc := range tests {
5252
output := NormalizePathInRegex(tc.input)
53-
assert.Equal(t, tc.input, output)
53+
assert.Equal(t, tc.output, output)
5454
}
5555
}

0 commit comments

Comments
 (0)