Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cgosqlite/release_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ package cgosqlite
import "testing"

func TestSQLiteVersion(t *testing.T) {
const want = "3.52.0"
const want = "3.53.1"
got := SQLiteVersion()
if got != want {
t.Fatalf("wrong version, want %s, got %s", want, got)
}
}

func TestSQLiteVersionNumber(t *testing.T) {
const want = 3052000
const want = 3053001
got := SQLiteVersionNumber()
if got != want {
t.Fatalf("wrong version, want %d, got %d", want, got)
Expand Down
Loading
Loading