Skip to content

Commit 397cb83

Browse files
committed
Update driver imports
1 parent b750718 commit 397cb83

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: drivers.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package sqltest
22

33
import (
4+
_ "github.com/go-sql-driver/mysql"
5+
_ "github.com/lib/pq"
46
_ "github.com/mattn/go-sqlite3"
57
_ "github.com/ziutek/mymysql/godrv"
6-
_ "github.com/Go-SQL-Driver/MySQL"
7-
_ "github.com/bmizerany/pq"
88
)

Diff for: sql_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var (
2525
pq Tester = &pqDB{}
2626
)
2727

28-
// pqDB validates the postgres driver by Blake Mizerany (github.com/bmizerany/pq.go)
28+
// pqDB validates the postgres driver by Blake Mizerany (github.com/lib/pq.go)
2929
type pqDB struct {
3030
once sync.Once // guards init of running
3131
running bool // whether port 5432 is listening

0 commit comments

Comments
 (0)