Skip to content

Commit

Permalink
Fix golangci-lint 'unconvert'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Apr 18, 2024
1 parent dfab1a5 commit c9172fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/conns/apiretry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func TestAddIsErrorRetryables(t *testing.T) {
t.Run(testCase.name, func(t *testing.T) {
t.Parallel()

got := AddIsErrorRetryables(retry.NewStandard(), retry.IsErrorRetryableFunc(testCase.f)).IsErrorRetryable(testCase.err)
got := AddIsErrorRetryables(retry.NewStandard(), testCase.f).IsErrorRetryable(testCase.err)
if got, want := got, testCase.expected; got != want {
t.Errorf("IsErrorRetryable(%q) = %v, want %v", testCase.err, got, want)
}
Expand Down

0 comments on commit c9172fa

Please sign in to comment.