We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 972c7d6 commit 76ea5b2Copy full SHA for 76ea5b2
crates/stackable-certs/src/ca/mod.rs
@@ -521,7 +521,9 @@ mod tests {
521
let mut ca = CertificateAuthority::new_ecdsa().unwrap();
522
let cert = ca
523
.generate_ecdsa_leaf_certificate("Product", "pod", [TEST_SAN], TEST_CERT_LIFETIME)
524
- .expect("ecdsa certificate generation failed");
+ .expect(
525
+ "Must be able to generate an ECDSA certificate. Perhaps there was an RNG failure",
526
+ );
527
528
assert_cert_attributes(cert.certificate());
529
}
0 commit comments