From 7c4e1306430f567b05aee07d6e7750db7c04217f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E6=96=8C?= Date: Thu, 20 Jan 2022 21:13:48 +0800 Subject: [PATCH] =?UTF-8?q?refact:=20=E5=88=AB=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/basic/basic_test.go | 2 +- examples/blog/blog_test.go | 2 +- examples/orders/orders_test.go | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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