Skip to content

Commit

Permalink
test: fix failed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
koba04 committed Jun 15, 2020
1 parent 6aea7ff commit 82e9d33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/base-test.js
Expand Up @@ -8,9 +8,9 @@ describe("base", () => {
"error.js": {
errors: [
"no-var",
"no-unused-vars",
"no-var",
"no-redeclare",
"no-unused-vars",
"getter-return",
"no-self-assign",
"no-import-assign",
Expand Down
2 changes: 1 addition & 1 deletion test/es5-test.js
Expand Up @@ -6,7 +6,7 @@ describe("es5", () => {
const result = await runLintWithFixtures("es5");
assert.deepStrictEqual(result, {
"error.js": {
errors: ["no-unused-vars", "no-redeclare"]
errors: ["no-redeclare", "no-unused-vars"]
},
"warning.js": {
warnings: ["array-callback-return"]
Expand Down

0 comments on commit 82e9d33

Please sign in to comment.