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

Commit

Permalink
Fix tests for eslint 3.2 (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
danez authored and hzoo committed Jul 30, 2016
1 parent aff95b8 commit be76e5a
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 @@ -402,7 +402,7 @@ describe("verify", function () {
"var b: T = 1; b;"
].join("\n"),
{ "no-unused-vars": 1, "no-undef": 1 },
[ "1:21 'T' is defined but never used no-unused-vars",
[ "1:21 'T' is defined but never used. no-unused-vars",
"2:8 'T' is not defined. no-undef" ]
);
});
Expand Down Expand Up @@ -1145,7 +1145,7 @@ describe("verify", function () {
verifyAndAssertMessages(
"var unused;",
{ "no-unused-vars": 1 },
[ "1:5 'unused' is defined but never used no-unused-vars" ]
[ "1:5 'unused' is defined but never used. no-unused-vars" ]
);
});

Expand Down Expand Up @@ -1196,7 +1196,7 @@ describe("verify", function () {
verifyAndAssertMessages(
"const {Bacona} = require('baconjs')",
{ "no-undef": 1, "no-unused-vars": 1 },
[ "1:8 'Bacona' is defined but never used no-unused-vars" ]
[ "1:8 'Bacona' is defined but never used. no-unused-vars" ]
);
});

Expand Down

0 comments on commit be76e5a

Please sign in to comment.