Skip to content

Commit a141177

Browse files
committed
Fix test
1 parent 6717138 commit a141177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlite3_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ func TestStress(t *testing.T) {
746746

747747
func TestVersion(t *testing.T) {
748748
s, n, id := Version()
749-
if s == "" || n == 0 || id == 0 {
749+
if s == "" || n == 0 || id == "" {
750750
t.Errorf("Version failed %q, %d, %q\n", s, n, id)
751751
}
752752
}

0 commit comments

Comments
 (0)