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 98acd6c commit 972c7d6Copy full SHA for 972c7d6
crates/stackable-certs/src/ca/mod.rs
@@ -509,7 +509,9 @@ mod tests {
509
let mut ca = CertificateAuthority::new_rsa().unwrap();
510
let cert = ca
511
.generate_rsa_leaf_certificate("Product", "pod", [TEST_SAN], TEST_CERT_LIFETIME)
512
- .expect("Must be able to generate an RSA certificate. Perhaps there was an RNG failure");
+ .expect(
513
+ "Must be able to generate an RSA certificate. Perhaps there was an RNG failure",
514
+ );
515
516
assert_cert_attributes(cert.certificate());
517
}
0 commit comments