This commit is contained in:
mattn 2014-07-04 10:25:27 +09:00
parent ff8505c4ac
commit 191ca24657
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ import (
"testing" "testing"
"time" "time"
"./_sqltest" "./sqlite3_test"
) )
func TempFilename() string { func TempFilename() string {
@ -635,7 +635,7 @@ func TestSuite(t *testing.T) {
} }
defer db.Close() defer db.Close()
sqltest.RunTests(t, db, sqltest.SQLITE) sqlite3_test.RunTests(t, db, sqlite3_test.SQLITE)
} }
// TODO: Execer & Queryer currently disabled // TODO: Execer & Queryer currently disabled

View File

@ -1,4 +1,4 @@
package sqltest package sqlite3_test
import ( import (
"database/sql" "database/sql"