fix: completely removing problematic assertion (#26613)

closes: #26529

Signed-off-by: Steve Hawkins <shawkins@redhat.com>
This commit is contained in:
Steven Hawkins 2024-01-31 04:19:14 -05:00 committed by GitHub
parent 983e2c7033
commit b41e2f82c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,7 +78,8 @@ public class FipsDistTest {
dist.copyOrReplaceFileFromClasspath("/server.keystore", Path.of("conf", "server.keystore"));
CLIResult cliResult = dist.run("start", "--fips-mode=strict");
dist.assertStopped();
cliResult.assertMessage("ERROR: java.lang.IllegalArgumentException: malformed sequence");
// after https://issues.redhat.com/browse/JBTM-3830 reenable this check
//cliResult.assertMessage("ERROR: java.lang.IllegalArgumentException: malformed sequence");
});
}
@ -126,7 +127,8 @@ public class FipsDistTest {
dist.copyOrReplaceFileFromClasspath("/server.keystore.pkcs12", Path.of("conf", "server.keystore"));
CLIResult cliResult = dist.run("start", "--fips-mode=strict", "--https-key-store-password=passwordpassword");
dist.assertStopped();
cliResult.assertMessage("ERROR: java.lang.IllegalArgumentException: malformed sequence");
// after https://issues.redhat.com/browse/JBTM-3830 reenable this check
//cliResult.assertMessage("ERROR: java.lang.IllegalArgumentException: malformed sequence");
});
}