Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Nov 6, 2024
1 parent a7f3e30 commit 0adbd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/brainfuck_vm/src/compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ mod tests {

#[test]
fn test_whitespace() {
let code = " + +> , < [> +.< - ] ".to_string();
let code = " + +> , <[> +.< - ] ";
let compiler = Compiler::new(code);
let expected_trimmed_code =
vec!['+', '+', '>', ',', '<', '[', '>', '+', '.', '<', '-', ']'];
Expand Down

0 comments on commit 0adbd94

Please sign in to comment.