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
1 changed files with 1 additions and 1 deletions

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)
}
})