From b5c70ce86cebb4a6e5c3958363dbcdd3c3c15fdc Mon Sep 17 00:00:00 2001 From: Eason Lin Date: Wed, 1 Aug 2018 15:45:07 +0800 Subject: [PATCH] fix goimports --- dialects/postgres/postgres.go | 1 + main_test.go | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/dialects/postgres/postgres.go b/dialects/postgres/postgres.go index 424e8bdc..e6c088b1 100644 --- a/dialects/postgres/postgres.go +++ b/dialects/postgres/postgres.go @@ -7,6 +7,7 @@ import ( "encoding/json" "errors" "fmt" + _ "github.com/lib/pq" "github.com/lib/pq/hstore" ) diff --git a/main_test.go b/main_test.go index 265e0be7..db770b1b 100644 --- a/main_test.go +++ b/main_test.go @@ -12,7 +12,6 @@ import ( "testing" "time" - "github.com/erikstmartin/go-testdb" "github.com/jinzhu/gorm" _ "github.com/jinzhu/gorm/dialects/mssql" _ "github.com/jinzhu/gorm/dialects/mysql"