Skip to content

Commit

Permalink
Fix error format
Browse files Browse the repository at this point in the history
  • Loading branch information
shinfan committed Jun 17, 2021
1 parent 1ba133a commit 96893f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/creds.go
Expand Up @@ -124,7 +124,7 @@ func selfSignedJWTTokenSource(data []byte, audience string, scopes []string) (oa
// Fallback to audience if scope is not provided
return google.JWTAccessTokenSourceFromJSON(data, audience)
} else {
return nil, errors.New("Neither scopes or audience are provided for the self-signed JWT.")
return nil, errors.New("neither scopes or audience are provided for the self-signed JWT")
}
}

Expand Down

0 comments on commit 96893f9

Please sign in to comment.