From fec88bbf39a397cc43ff650db9bf0b7ad28e42a0 Mon Sep 17 00:00:00 2001 From: Mateusz Poliwczak Date: Wed, 22 May 2024 20:36:36 +0200 Subject: [PATCH] update test error message Change-Id: I2f14c9c343f3555b689b991443fdc00b26b99e65 --- src/crypto/x509/x509_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/x509/x509_test.go b/src/crypto/x509/x509_test.go index 24f801ed82..97f93d3b98 100644 --- a/src/crypto/x509/x509_test.go +++ b/src/crypto/x509/x509_test.go @@ -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) } })