From 1940fb682c7f29d3d82913d0b58d542d034c2556 Mon Sep 17 00:00:00 2001 From: Mihai Bazon Date: Mon, 12 Oct 2015 10:27:00 +0300 Subject: [PATCH] Fix tests --- test/run-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run-tests.js b/test/run-tests.js index fc7476f9..818a65e4 100755 --- a/test/run-tests.js +++ b/test/run-tests.js @@ -190,7 +190,7 @@ function parse_test(file) { function make_code(ast, beautify) { if (arguments.length == 1) beautify = true; - var stream = U.OutputStream({ beautify: beautify }); + var stream = U.OutputStream({ beautify: beautify, inline_script: true }); ast.print(stream); return stream.get(); } -- 2.34.1