test: add prefix to base32 parser test #13

This commit is contained in:
Christoph J. Scherr 2024-05-13 14:24:40 +02:00
parent 47894a3f26
commit 44be69a262
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ fn parser_b64() {
#[test]
fn parser_b32() {
assert_eq!(numf_parser::<u32>("IFAUEQQ=").unwrap(), 0x41414242);
assert_eq!(numf_parser::<u32>("032sIFAUEQQ=").unwrap(), 0x41414242);
}
#[test]