fix: go lints

This commit is contained in:
2026-03-21 09:00:14 +00:00
parent 4007a7d73e
commit cf9330e483
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ func resolveTestDirFromConfig(root string, cfg miroconfig.Config) (string, error
}
return testDir, nil
}
if err != nil && !errors.Is(err, os.ErrNotExist) {
if !errors.Is(err, os.ErrNotExist) {
return "", fmt.Errorf("failed to check test directory %s: %v", testDir, err)
}