Fix test.

This commit is contained in:
Stephen Chung 2021-01-09 16:57:21 +08:00
parent ad250fc973
commit f8b36a470a

View File

@ -25,7 +25,7 @@ fn test_print_debug() -> Result<(), Box<EvalAltResult>> {
// Evaluate script // Evaluate script
engine.consume("print(40 + 2)")?; engine.consume("print(40 + 2)")?;
let mut ast = engine.compile(r#"let x = "hello!"; debug(x)"#)?; let mut ast = engine.compile(r#"let x = "hello!"; debug(x)"#)?;
ast.set_source(Some("world")); ast.set_source("world");
engine.consume_ast(&ast)?; engine.consume_ast(&ast)?;
// 'logbook' captures all the 'print' and 'debug' output // 'logbook' captures all the 'print' and 'debug' output