Skip to content

Commit

Permalink
Fix non-constant format string error (#619)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHennen authored Jan 19, 2025
1 parent 0c36055 commit f540890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/fork/ietf-cms/verify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ F1Al5pA+giJh15T7Uu+p5O0J
}
pkcs7Cert, err := x509.ParseCertificate(pkcs7CertPEM.Bytes)
if err != nil {
t.Fatalf("failed to parse certificate: " + err.Error())
t.Fatalf("failed to parse certificate: %v", err)
}

pkcs7Certs := []*x509.Certificate{pkcs7Cert}
Expand Down

0 comments on commit f540890

Please sign in to comment.