Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
feat: change module name
Browse files Browse the repository at this point in the history
  • Loading branch information
sashamelentyev committed Jul 21, 2022
1 parent 4c990f8 commit eb517fb
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion address_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package faker_test
import (
"testing"

"go.neotoolkit.com/faker"
"github.com/neotoolkit/faker"
)

func TestFaker_PostCode(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"testing"

"go.neotoolkit.com/faker"
"github.com/neotoolkit/faker"
)

func TestFaker_Username(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion bool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"go.neotoolkit.com/faker"
"github.com/neotoolkit/faker"
)

func TestFaker_Bool(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion color_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package faker_test
import (
"testing"

"go.neotoolkit.com/faker"
"github.com/neotoolkit/faker"
)

func TestFaker_Color(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion date_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"go.neotoolkit.com/faker"
"github.com/neotoolkit/faker"
)

func TestFaker_Weekday(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion faker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"regexp"
"testing"

"go.neotoolkit.com/faker"
"github.com/neotoolkit/faker"
)

func TestInteger(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module go.neotoolkit.com/faker
module github.com/neotoolkit/faker

go 1.18
2 changes: 1 addition & 1 deletion internet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package faker_test
import (
"testing"

"go.neotoolkit.com/faker"
"github.com/neotoolkit/faker"
)

func TestFaker_HTTPMethod(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion uuid_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"testing"

"go.neotoolkit.com/faker"
"github.com/neotoolkit/faker"
)

func TestFaker_UUID(t *testing.T) {
Expand Down

0 comments on commit eb517fb

Please sign in to comment.