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 go1.19 vet failures #1779

Merged
merged 1 commit into from Jul 30, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions aws/signer/v4/middleware_test.go
Expand Up @@ -26,7 +26,7 @@ func TestComputePayloadHashMiddleware(t *testing.T) {
cases := []struct {
content io.Reader
expectedHash string
expectedErr error
expectedErr interface{}
}{
0: {
content: func() io.Reader {
Expand Down Expand Up @@ -96,7 +96,7 @@ func TestSignHTTPRequestMiddleware(t *testing.T) {
creds aws.CredentialsProvider
hash string
logSigning bool
expectedErr error
expectedErr interface{}
}{
"success": {
creds: unit.StubCredentialsProvider{},
Expand Down Expand Up @@ -312,7 +312,7 @@ func TestUseDynamicPayloadSigningMiddleware(t *testing.T) {
content io.Reader
url string
expectedHash string
expectedErr error
expectedErr interface{}
}{
"TLS disabled": {
content: func() io.Reader {
Expand Down
2 changes: 1 addition & 1 deletion internal/v4a/middleware_test.go
Expand Up @@ -35,7 +35,7 @@ func TestSignHTTPRequestMiddleware(t *testing.T) {
creds CredentialsProvider
hash string
logSigning bool
expectedErr error
expectedErr interface{}
}{
"success": {
creds: stubCredentials,
Expand Down