forked from mirror/go-sqlcipher
Fix test
This commit is contained in:
parent
d463e8f1f9
commit
f40baee643
|
@ -845,7 +845,7 @@ func TestStress(t *testing.T) {
|
||||||
func TestDateTimeLocal(t *testing.T) {
|
func TestDateTimeLocal(t *testing.T) {
|
||||||
zone := "Asia/Tokyo"
|
zone := "Asia/Tokyo"
|
||||||
tempFilename := TempFilename()
|
tempFilename := TempFilename()
|
||||||
db, err := sql.Open("sqlite3", "file:///"+tempFilename+"?loc="+zone)
|
db, err := sql.Open("sqlite3", tempFilename+"?loc="+zone)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal("Failed to open database:", err)
|
t.Fatal("Failed to open database:", err)
|
||||||
}
|
}
|
||||||
|
@ -863,7 +863,7 @@ func TestDateTimeLocal(t *testing.T) {
|
||||||
}
|
}
|
||||||
db.Close()
|
db.Close()
|
||||||
|
|
||||||
db, err = sql.Open("sqlite3", "file:///"+tempFilename)
|
db, err = sql.Open("sqlite3", tempFilename)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal("Failed to open database:", err)
|
t.Fatal("Failed to open database:", err)
|
||||||
}
|
}
|
||||||
|
@ -888,7 +888,7 @@ func TestDateTimeLocal(t *testing.T) {
|
||||||
db.Exec("INSERT INTO foo VALUES(?);", dt)
|
db.Exec("INSERT INTO foo VALUES(?);", dt)
|
||||||
|
|
||||||
db.Close()
|
db.Close()
|
||||||
db, err = sql.Open("sqlite3", "file:///"+tempFilename+"?loc="+zone)
|
db, err = sql.Open("sqlite3", tempFilename+"?loc="+zone)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal("Failed to open database:", err)
|
t.Fatal("Failed to open database:", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue