diff options
Diffstat (limited to 'test/compress')
-rw-r--r-- | test/compress/functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compress/functions.js b/test/compress/functions.js index b5def8e1..c8efc12c 100644 --- a/test/compress/functions.js +++ b/test/compress/functions.js @@ -265,7 +265,7 @@ issue_203: { } expect: { var m = {}; - var fn = Function("n", "o", "o.exports=42"); + var fn = Function("n,o", "o.exports=42"); fn(null, m, m.exports); console.log(m.exports); } |