Skip to content

Commit a532940

Browse files
committed
Fix some linter issues
1 parent 083597e commit a532940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ func GetProjectDir() (string, error) {
184184
if err != nil {
185185
return wd, fmt.Errorf("failed to get current working directory: %w", err)
186186
}
187-
wd = strings.Replace(wd, "/test/e2e", "", -1)
187+
wd = strings.ReplaceAll(wd, "/test/e2e", "")
188188
return wd, nil
189189
}
190190

0 commit comments

Comments
 (0)