diff --git a/asyncblock_test.go b/asyncblock_test.go index 1e90967..ef30aef 100644 --- a/asyncblock_test.go +++ b/asyncblock_test.go @@ -3,7 +3,7 @@ package matchers_test import ( "testing" - matchers "github.com/Storytel/gomock-matchers" + matchers "github.com/Storytel/gomock-matchers/v2" "github.com/stretchr/testify/assert" "go.uber.org/mock/gomock" ) diff --git a/go.mod b/go.mod index ada1848..038b2bb 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/Storytel/gomock-matchers +module github.com/Storytel/gomock-matchers/v2 go 1.21 diff --git a/proto_test.go b/proto_test.go index 30aa6e1..b4d7f96 100644 --- a/proto_test.go +++ b/proto_test.go @@ -1,10 +1,11 @@ package matchers_test import ( - matchers "github.com/Storytel/gomock-matchers" - "github.com/stretchr/testify/assert" "testing" + matchers "github.com/Storytel/gomock-matchers/v2" + "github.com/stretchr/testify/assert" + "google.golang.org/protobuf/types/known/structpb" ) diff --git a/recording_test.go b/recording_test.go index 4b8dac4..0fdd49c 100644 --- a/recording_test.go +++ b/recording_test.go @@ -3,7 +3,7 @@ package matchers_test import ( "testing" - matchers "github.com/Storytel/gomock-matchers" + matchers "github.com/Storytel/gomock-matchers/v2" "github.com/stretchr/testify/assert" "go.uber.org/mock/gomock" ) diff --git a/regex_test.go b/regex_test.go index 9bdad81..4b2a686 100644 --- a/regex_test.go +++ b/regex_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - matchers "github.com/Storytel/gomock-matchers" + matchers "github.com/Storytel/gomock-matchers/v2" "github.com/stretchr/testify/assert" ) diff --git a/same_test.go b/same_test.go index b6f3fda..6f3a1d9 100644 --- a/same_test.go +++ b/same_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - matchers "github.com/Storytel/gomock-matchers" + matchers "github.com/Storytel/gomock-matchers/v2" "github.com/stretchr/testify/assert" )