Skip to content

Commit

Permalink
fix: formatting error in test with nightly compiler (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
grjte authored Oct 25, 2024
1 parent eb933f2 commit 4bc4c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.nr
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4bc4c4b

Please sign in to comment.