Skip to content

Commit

Permalink
correct test
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelb committed Feb 8, 2022
1 parent 334c33d commit d637a79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ressources/install_all_compilers_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ export PATH=$PATH:$HOME/golang/go/bin/

# deno for typescript and javascript
curl -fsSL https://deno.land/x/install/install.sh | sh
export DENO_INSTALL=$HOME"/.deno"
export DENO_INSTALL="/home/runner/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
2 changes: 1 addition & 1 deletion src/interpreters/JS_TS_deno.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ mod test_ts_js_deno_original {
fn print_repl() {
let mut data = DataHolder::new();
data.current_bloc = String::from("let message: string = 'Hi';\nconsole.log(message);");
let mut interpreter = Python3_fifo::new(data);
let mut interpreter = JS_TS_deno::new(data);
let res = interpreter.run_at_level_repl(SupportLevel::Bloc);
assert!(res.is_err());
}
Expand Down

0 comments on commit d637a79

Please sign in to comment.