Skip to content

Commit

Permalink
fix: Bench fix
Browse files Browse the repository at this point in the history
  • Loading branch information
can-keklik committed Feb 23, 2024
1 parent 8b3e1b8 commit c5619f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/benches/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fn runtime(filename: &str) {
BufReader::new(file)
.read_to_string(&mut content)
.expect("File couldn't be read.");
let mut runtime = Runtime::new(RuntimeMode::File);
let mut runtime = Runtime::new(RuntimeMode::File, None);
runtime.interpret(&content);
}

Expand Down

0 comments on commit c5619f1

Please sign in to comment.