diff options
Diffstat (limited to 'test/mocha')
-rw-r--r-- | test/mocha/cli.js | 6 | ||||
-rw-r--r-- | test/mocha/comment.js | 2 | ||||
-rw-r--r-- | test/mocha/release.js | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/test/mocha/cli.js b/test/mocha/cli.js index 671d700e..10f0465a 100644 --- a/test/mocha/cli.js +++ b/test/mocha/cli.js @@ -164,13 +164,13 @@ describe("bin/uglifyjs", function () { done(); }); }); - it("Should work with `--beautify bracketize`", function (done) { - var command = uglifyjscmd + ' test/input/issue-1482/input.js -b bracketize'; + it("Should work with `--beautify braces`", function (done) { + var command = uglifyjscmd + ' test/input/issue-1482/input.js -b braces'; exec(command, function (err, stdout) { if (err) throw err; - assert.strictEqual(stdout, read("test/input/issue-1482/bracketize.js")); + assert.strictEqual(stdout, read("test/input/issue-1482/braces.js")); done(); }); }); diff --git a/test/mocha/comment.js b/test/mocha/comment.js index 74ae962c..9fc50470 100644 --- a/test/mocha/comment.js +++ b/test/mocha/comment.js @@ -139,7 +139,7 @@ describe("Comment", function() { assert.strictEqual(result.code, code); }); - it("Should retain comments within brackets", function() { + it("Should retain comments within braces", function() { var code = [ "{/* foo */}", "a({/* foo */});", diff --git a/test/mocha/release.js b/test/mocha/release.js index 063d0fc7..f911b009 100644 --- a/test/mocha/release.js +++ b/test/mocha/release.js @@ -17,7 +17,7 @@ describe("test/benchmark.js", function() { this.timeout(10 * 60 * 1000); [ "-b", - "-b bracketize", + "-b braces", "-m", "-mc passes=3", "-mc passes=3,toplevel", |