Skip to content

Commit

Permalink
fix: remove unnecessary debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
varex83 committed Aug 27, 2024
1 parent 566e6c4 commit 15342e5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/blockifier/src/execution/native/utils_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ fn test_decode_non_utf8_str() {
let v3 = Felt::from_dec_str("13299428").unwrap();
let felts = [v1, v2, v3];

let res = decode_felts_as_str(&felts);
dbg!(res.as_bytes());
assert_eq!(res, format!("[{}, {} ({}), {}]", v1, v2_msg, v2, v3))
assert_eq!(decode_felts_as_str(&felts), format!("[{}, {} ({}), {}]", v1, v2_msg, v2, v3))
}

#[test]
Expand Down

0 comments on commit 15342e5

Please sign in to comment.