Skip to content
This repository has been archived by the owner on Aug 18, 2021. It is now read-only.

Commit

Permalink
why..
Browse files Browse the repository at this point in the history
  • Loading branch information
hzoo committed Aug 3, 2016
1 parent 3fb2cc0 commit ac4060d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/non-regression.js
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ describe("verify", function () {
"var x = 1;"
].join("\n"),
{ "no-use-before-define": 1 },
[ "1:13 'x' was used before it was defined no-use-before-define" ]
[ "1:13 'x' was used before it was defined. no-use-before-define" ]
);
});

Expand Down Expand Up @@ -1380,7 +1380,7 @@ describe("verify", function () {
"var a = 123;",
].join("\n"),
{ "no-redeclare": 1 },
[ "2:5 'a' is already defined no-redeclare" ],
[ "2:5 'a' is already defined. no-redeclare" ],
"script"
);
});
Expand All @@ -1391,7 +1391,7 @@ describe("verify", function () {
"var a = 123;",
].join("\n"),
{ "no-redeclare": 1 },
[ "2:5 'a' is already defined no-redeclare" ],
[ "2:5 'a' is already defined. no-redeclare" ],
"module"
);
});
Expand Down

0 comments on commit ac4060d

Please sign in to comment.