From e7adb3041139987632a653f61f129d8839297442 Mon Sep 17 00:00:00 2001 From: grjte Date: Fri, 18 Oct 2024 17:29:08 +0100 Subject: [PATCH] fix: formatting error in test with nightly compiler --- src/lib.nr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.nr b/src/lib.nr index 887cbd9..2e1469a 100644 --- a/src/lib.nr +++ b/src/lib.nr @@ -263,7 +263,7 @@ fn test_decode_max_byte() { assert(result == expected); } -#[test(should_fail_with="DecodeError: invalid symbol 255, offset 0")] +#[test(should_fail_with = "DecodeError: invalid symbol 255, offset 0")] fn test_decode_invalid() { let input: [u8; 1] = [255]; let _: [u8; 0] = base64_decode(input);