chore: clear pre-existing clippy + fmt in crypto tests

Fix rustfmt drift and two clippy lints (`doc_markdown` missing
backticks around `NativeRuntime`) that surfaced after the Rust 1.94
toolchain update. No functional change.
This commit is contained in:
2026-04-18 17:11:28 +02:00
parent bcccdfb49d
commit 67448caa9c
2 changed files with 13 additions and 4 deletions
+4 -1
View File
@@ -80,7 +80,10 @@ mod tests {
#[test]
fn sha1_rfc3174_abc() {
assert_eq!(hex(&sha1_hash(b"abc")), "a9993e364706816aba3e25717850c26c9cd0d89d");
assert_eq!(
hex(&sha1_hash(b"abc")),
"a9993e364706816aba3e25717850c26c9cd0d89d"
);
}
#[test]