diff options
Diffstat (limited to 'test/mocha/ie8.js')
-rw-r--r-- | test/mocha/ie8.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mocha/ie8.js b/test/mocha/ie8.js index 8f3a27fa..2187047b 100644 --- a/test/mocha/ie8.js +++ b/test/mocha/ie8.js @@ -1,10 +1,10 @@ var assert = require("assert"); -var uglify = require("../../"); +var UglifyJS = require("../.."); describe("ie8", function() { it("Should be able to minify() with undefined as catch parameter in a try...catch statement", function() { assert.strictEqual( - uglify.minify([ + UglifyJS.minify([ "function a(b){", " try {", " throw 'Stuff';", |