Skip to content

Commit bb458bb

Browse files
authored
Merge pull request #46 from 56KBs/fix/module-import-version
fix: Resolve go module import path
2 parents d8dc92d + 89be9c4 commit bb458bb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/custom_retry_function_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"testing"
1010
"time"
1111

12-
"github.com/avast/retry-go"
12+
"github.com/avast/retry-go/v3"
1313
"github.com/stretchr/testify/assert"
1414
)
1515

examples/delay_based_on_error_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"testing"
1111
"time"
1212

13-
"github.com/avast/retry-go"
13+
"github.com/avast/retry-go/v3"
1414
"github.com/stretchr/testify/assert"
1515
)
1616

examples/http_get_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"net/http/httptest"
88
"testing"
99

10-
"github.com/avast/retry-go"
10+
"github.com/avast/retry-go/v3"
1111
"github.com/stretchr/testify/assert"
1212
)
1313

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/avast/retry-go
1+
module github.com/avast/retry-go/v3
22

33
go 1.13
44

0 commit comments

Comments
 (0)