Fix tests

This commit is contained in:
Mihai Bazon
2015-10-12 10:27:00 +03:00
parent 17eef5a3c2
commit 1940fb682c

View File

@@ -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();
}