diff --git a/examples/basic/basic_test.go b/examples/basic/basic_test.go index e9153a5..bd6817d 100644 --- a/examples/basic/basic_test.go +++ b/examples/basic/basic_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/DATA-DOG/go-sqlmock" + "github.com/shihuo-cn/go-sqlmock" ) // a successful case diff --git a/examples/blog/blog_test.go b/examples/blog/blog_test.go index 2442067..70950b2 100644 --- a/examples/blog/blog_test.go +++ b/examples/blog/blog_test.go @@ -8,7 +8,7 @@ import ( "net/http/httptest" "testing" - "github.com/DATA-DOG/go-sqlmock" + "github.com/shihuo-cn/go-sqlmock" ) func (a *api) assertJSON(actual []byte, data interface{}, t *testing.T) { diff --git a/examples/orders/orders_test.go b/examples/orders/orders_test.go index 1dd10b1..afc2ca7 100644 --- a/examples/orders/orders_test.go +++ b/examples/orders/orders_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/DATA-DOG/go-sqlmock" + "github.com/shihuo-cn/go-sqlmock" ) // will test that order with a different status, cannot be cancelled diff --git a/go.mod b/go.mod index 6f58b70..9099366 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/DATA-DOG/go-sqlmock +module github.com/shihuo-cn/go-sqlmock go 1.15