local import to make testing easier on forks

This commit is contained in:
Solomon White 2015-01-22 13:19:33 -07:00
parent 5330572c25
commit 8502ffd395
2 changed files with 2 additions and 2 deletions

View File

@ -6,10 +6,10 @@ import (
"fmt" "fmt"
"strconv" "strconv"
"."
_ "github.com/denisenkom/go-mssqldb" _ "github.com/denisenkom/go-mssqldb"
testdb "github.com/erikstmartin/go-testdb" testdb "github.com/erikstmartin/go-testdb"
_ "github.com/go-sql-driver/mysql" _ "github.com/go-sql-driver/mysql"
"github.com/jinzhu/gorm"
"github.com/jinzhu/now" "github.com/jinzhu/now"
_ "github.com/lib/pq" _ "github.com/lib/pq"
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"

View File

@ -1,7 +1,7 @@
package gorm_test package gorm_test
import ( import (
"github.com/jinzhu/gorm" "."
"testing" "testing"
) )