From 44be69a26277eb1916c2c18c1565ff5089856ed2 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Mon, 13 May 2024 14:24:40 +0200 Subject: [PATCH] test: add prefix to base32 parser test #13 --- tests/format.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/format.rs b/tests/format.rs index d47ade7..7b3bef6 100644 --- a/tests/format.rs +++ b/tests/format.rs @@ -228,7 +228,7 @@ fn parser_b64() { #[test] fn parser_b32() { - assert_eq!(numf_parser::("IFAUEQQ=").unwrap(), 0x41414242); + assert_eq!(numf_parser::("032sIFAUEQQ=").unwrap(), 0x41414242); } #[test]