Skip to content

Commit

Permalink
cleanup: fix new vet errors (grpc#8044)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfawley authored Jan 28, 2025
1 parent cc637f7 commit 73e4470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion security/advancedtls/advancedtls_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ func (s) TestEnd2End(t *testing.T) {
}
cert, err := x509.ParseCertificate(params.RawCerts[0])
if err != nil || cert == nil {
return nil, fmt.Errorf("failed to parse certificate: " + err.Error())
return nil, fmt.Errorf("failed to parse certificate: %v", err)
}
authzCheck := false
switch stage.read() {
Expand Down

0 comments on commit 73e4470

Please sign in to comment.