1
0
mirror of https://github.com/golang/go synced 2024-11-14 22:50:27 -07:00

update test error message

Change-Id: I2f14c9c343f3555b689b991443fdc00b26b99e65
This commit is contained in:
Mateusz Poliwczak 2024-05-22 20:36:36 +02:00
parent 697b009149
commit fec88bbf39

View File

@ -2910,7 +2910,7 @@ func TestCreateRevocationList(t *testing.T) {
parsedCRL.Number.String(), tc.template.Number.String())
}
if !bytes.Equal(parsedCRL.AuthorityKeyId, tc.issuer.SubjectKeyId) {
t.Fatalf("Generated CRL has wrong Number: got %x, want %x",
t.Fatalf("Generated CRL has wrong AuthorityKeyId: got %x, want %x",
parsedCRL.AuthorityKeyId, tc.issuer.SubjectKeyId)
}
})