Skip to content

Commit 996302b

Browse files
author
Max Chechel
committed
fixed tests
1 parent 6a4d1d4 commit 996302b

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

sqlx_context_test.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ import (
2323
"time"
2424

2525
_ "github.com/go-sql-driver/mysql"
26-
"github.com/jmoiron/sqlx/reflectx"
26+
"github.com/gojuno/sqlx/reflectx"
2727
_ "github.com/lib/pq"
28-
_ "github.com/mattn/go-sqlite3"
2928
)
3029

3130
func MultiExecContext(ctx context.Context, e ExecerContext, query string) {
@@ -55,10 +54,6 @@ func RunWithSchemaContext(ctx context.Context, schema Schema, t *testing.T, test
5554
create, drop := schema.Postgres()
5655
runner(ctx, pgdb, t, create, drop)
5756
}
58-
if TestSqlite {
59-
create, drop := schema.Sqlite3()
60-
runner(ctx, sldb, t, create, drop)
61-
}
6257
if TestMysql {
6358
create, drop := schema.MySQL()
6459
runner(ctx, mysqldb, t, create, drop)

0 commit comments

Comments
 (0)