From eb517fbf66471d583921f0089a7eb1985f887afc Mon Sep 17 00:00:00 2001 From: Sasha Melentyev Date: Thu, 21 Jul 2022 18:36:11 +0300 Subject: [PATCH] feat: change module name --- address_test.go | 2 +- auth_test.go | 2 +- bool_test.go | 2 +- color_test.go | 2 +- date_test.go | 2 +- faker_test.go | 2 +- go.mod | 2 +- internet_test.go | 2 +- uuid_test.go | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/address_test.go b/address_test.go index f52599b..715b093 100644 --- a/address_test.go +++ b/address_test.go @@ -3,7 +3,7 @@ package faker_test import ( "testing" - "go.neotoolkit.com/faker" + "github.com/neotoolkit/faker" ) func TestFaker_PostCode(t *testing.T) { diff --git a/auth_test.go b/auth_test.go index 723d379..6230ad2 100644 --- a/auth_test.go +++ b/auth_test.go @@ -4,7 +4,7 @@ import ( "regexp" "testing" - "go.neotoolkit.com/faker" + "github.com/neotoolkit/faker" ) func TestFaker_Username(t *testing.T) { diff --git a/bool_test.go b/bool_test.go index 6f3cc87..640cea2 100644 --- a/bool_test.go +++ b/bool_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "go.neotoolkit.com/faker" + "github.com/neotoolkit/faker" ) func TestFaker_Bool(t *testing.T) { diff --git a/color_test.go b/color_test.go index 0a3e7f2..7445b71 100644 --- a/color_test.go +++ b/color_test.go @@ -3,7 +3,7 @@ package faker_test import ( "testing" - "go.neotoolkit.com/faker" + "github.com/neotoolkit/faker" ) func TestFaker_Color(t *testing.T) { diff --git a/date_test.go b/date_test.go index 1de6103..f9f209c 100644 --- a/date_test.go +++ b/date_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "go.neotoolkit.com/faker" + "github.com/neotoolkit/faker" ) func TestFaker_Weekday(t *testing.T) { diff --git a/faker_test.go b/faker_test.go index 21b04d1..cb0cd6a 100644 --- a/faker_test.go +++ b/faker_test.go @@ -5,7 +5,7 @@ import ( "regexp" "testing" - "go.neotoolkit.com/faker" + "github.com/neotoolkit/faker" ) func TestInteger(t *testing.T) { diff --git a/go.mod b/go.mod index 5541dde..5b9a5b1 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module go.neotoolkit.com/faker +module github.com/neotoolkit/faker go 1.18 diff --git a/internet_test.go b/internet_test.go index dd3b44f..29f9be7 100644 --- a/internet_test.go +++ b/internet_test.go @@ -3,7 +3,7 @@ package faker_test import ( "testing" - "go.neotoolkit.com/faker" + "github.com/neotoolkit/faker" ) func TestFaker_HTTPMethod(t *testing.T) { diff --git a/uuid_test.go b/uuid_test.go index c079ddf..79b3312 100644 --- a/uuid_test.go +++ b/uuid_test.go @@ -4,7 +4,7 @@ import ( "regexp" "testing" - "go.neotoolkit.com/faker" + "github.com/neotoolkit/faker" ) func TestFaker_UUID(t *testing.T) {