diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-12-20 17:05:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-20 17:05:40 +0800 |
commit | 86ae5881b7b269dc656520ff4dddbbd365013a0b (patch) | |
tree | 1febf8ed0ae71a44c8c7bd8f104b4776eb4c5aa5 /test/mocha/glob.js | |
parent | fac003c64f5512692e67e41a55b21c74a32a3c6b (diff) | |
download | tracifyjs-86ae5881b7b269dc656520ff4dddbbd365013a0b.tar.gz tracifyjs-86ae5881b7b269dc656520ff4dddbbd365013a0b.zip |
disable `hoist_funs` by default (#2626)
Diffstat (limited to 'test/mocha/glob.js')
-rw-r--r-- | test/mocha/glob.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mocha/glob.js b/test/mocha/glob.js index b6f1e049..58c40cf0 100644 --- a/test/mocha/glob.js +++ b/test/mocha/glob.js @@ -11,7 +11,7 @@ describe("bin/uglifyjs with input file globs", function() { exec(command, function(err, stdout) { if (err) throw err; - assert.strictEqual(stdout, 'function foo(o){print("Foo:",2*o)}var print=console.log.bind(console);\n'); + assert.strictEqual(stdout, 'var print=console.log.bind(console);function foo(o){print("Foo:",2*o)}\n'); done(); }); }); |