Skip to content

Commit

Permalink
fix: formatting error in test with nightly compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
grjte committed Oct 18, 2024
1 parent eb933f2 commit e7adb30
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 e7adb30

Please sign in to comment.