This commit is contained in:
Shreyas Goenka 2025-01-29 12:09:58 +01:00
parent 7c5d65feb1
commit fadd6edb91
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ func DetectFile(t TestingT, path string) bool {
if os.IsNotExist(err) { if os.IsNotExist(err) {
return false return false
} }
t.Fatalf("unexpected error: %v", err) require.NoError(t, err)
return false return false
} }