fix: correct error handling in filesystem tests (#1226)

This commit is contained in:
Andrew Meyer 2022-09-08 15:21:20 -07:00 committed by GitHub
parent 58a6d07fe6
commit 87d162b5e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ func initGitFS(t *testing.T) Filesystem {
result, err := filesystemFromRepo(uri)
if err != nil {
t.Fatal(t)
t.Fatal(err)
}
return result
}