Fix some clipplies

This commit is contained in:
Peter Ammon
2025-03-08 10:52:27 -08:00
parent 2930c85926
commit 2ecd0d011b
2 changed files with 2 additions and 2 deletions

View File

@@ -1697,5 +1697,5 @@ fn parse_hex(hex: &[u8]) -> Option<Vec<u8>> {
#[test]
fn test_parse_hex() {
assert_eq!(parse_hex(&[b'3', b'd']), Some(vec![61]));
assert_eq!(parse_hex(b"3d"), Some(vec![61]));
}