Skip to content

Commit

Permalink
Fix module reference for v2
Browse files Browse the repository at this point in the history
  • Loading branch information
csainty committed Oct 16, 2023
1 parent b432c3d commit 71335d3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
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

0 comments on commit 71335d3

Please sign in to comment.