Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix module reference for v2 #12

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion asyncblock_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Storytel/gomock-matchers
module github.com/Storytel/gomock-matchers/v2

go 1.21

Expand Down
5 changes: 3 additions & 2 deletions proto_test.go
Original file line number Diff line number Diff line change
@@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion recording_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion regex_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion same_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down