From 14790da040f8261d7b43d0267696b9f69f91e134 Mon Sep 17 00:00:00 2001 From: Sanskruti Dongre Date: Thu, 4 Apr 2024 11:17:33 +0530 Subject: [PATCH] Enabling power support for apache/cxf --- .../xkms/x509/validator/TrustedAuthorityValidatorCRLTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/xkms/xkms-x509-handlers/src/test/java/org/apache/cxf/xkms/x509/validator/TrustedAuthorityValidatorCRLTest.java b/services/xkms/xkms-x509-handlers/src/test/java/org/apache/cxf/xkms/x509/validator/TrustedAuthorityValidatorCRLTest.java index e759f775de2..5ae303a8933 100644 --- a/services/xkms/xkms-x509-handlers/src/test/java/org/apache/cxf/xkms/x509/validator/TrustedAuthorityValidatorCRLTest.java +++ b/services/xkms/xkms-x509-handlers/src/test/java/org/apache/cxf/xkms/x509/validator/TrustedAuthorityValidatorCRLTest.java @@ -91,7 +91,7 @@ public void testIsCertChainValid() throws CertificateException { validator.isCertificateChainValid(Arrays.asList(certificateRoot))); Assert.assertTrue("wss40rev should not be valid", !validator.isCertificateChainValid(Arrays.asList(certificateWss40Rev))); - Assert.assertTrue("wss40 should be valid", + Assert.assertTrue("wss40 should not be valid", validator.isCertificateChainValid(Arrays.asList(certificateWss40))); }