Skip to content
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 examples/custom_retry_function_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"testing"
"time"

"github.com/codeGROOVE-dev/retry-go"
"github.com/codeGROOVE-dev/retry"
)

// RetriableError is a custom error that contains a positive duration for the next retry.
Expand Down
2 changes: 1 addition & 1 deletion examples/delay_based_on_error_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

"github.com/codeGROOVE-dev/retry-go"
"github.com/codeGROOVE-dev/retry"
)

type RetryAfterError struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/errors_history_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http/httptest"
"testing"

"github.com/codeGROOVE-dev/retry-go"
"github.com/codeGROOVE-dev/retry"
)

// TestErrorHistory shows an example of how to get all the previous errors when
Expand Down
2 changes: 1 addition & 1 deletion examples/http_get_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net/http/httptest"
"testing"

"github.com/codeGROOVE-dev/retry-go"
"github.com/codeGROOVE-dev/retry"
)

func TestGet(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 github.com/codeGROOVE-dev/retry-go
module github.com/codeGROOVE-dev/retry

go 1.22
Loading