From 9511f3b9db816d2ea4f7f0a65133a0afc1145642 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Thu, 3 Jul 2025 16:59:54 +0200 Subject: [PATCH] Fix 52_ocsp_revoked (OCSP --> CRL) --- t/52_ocsp_revoked.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/52_ocsp_revoked.t b/t/52_ocsp_revoked.t index a9b29a9..6b8e186 100755 --- a/t/52_ocsp_revoked.t +++ b/t/52_ocsp_revoked.t @@ -31,8 +31,8 @@ system("@args") == 0 or die ("FAILED: \"@args\" "); $cat_csv=`cat $csv`; -# Is the certificate revoked? -like($cat_csv, qr/"cert_ocspRevoked".*"CRITICAL","revoked"/,"The certificate should be revoked"); +# Is the certificate revoked? (formerly: OCSP, now: CRL) +like($cat_csv, qr/"cert_crlRevoked".*"CRITICAL","revoked"/,"The certificate should be revoked"); $tests++; unlink $csv;