Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.

Commit 9039583

Browse files
authored
Merge pull request #58 from gigagrug/fix-err
err != err into err != nil in TestMain
2 parents 340e5b7 + 95cff60 commit 9039583

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

turso_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func TestMain(m *testing.M) {
3333
panic(connErr)
3434
}
3535
err := conn.Ping()
36-
if err != err {
36+
if err != nil {
3737
log.Fatalf("Error pinging database: %v", err)
3838
}
3939
defer conn.Close()

0 commit comments

Comments
 (0)