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 82e9d33 commit 1abfbf5
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions test/base-test.js
Expand Up @@ -8,8 +8,6 @@ describe("base", () => {
"error.js": {
errors: [
"no-var",
"no-var",
"no-redeclare",
"no-unused-vars",
"getter-return",
"no-self-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-redeclare", "no-unused-vars"]
errors: ["no-unused-vars"]
},
"warning.js": {
warnings: ["array-callback-return"]
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/base/error.js
@@ -1,6 +1,5 @@
import mod from './mod';

var foo = {};
var foo = {};
const obj = {
a: 'a',
Expand Down
1 change: 0 additions & 1 deletion test/fixtures/es5/error.js
@@ -1,3 +1,2 @@
var obj = {};
var obj = {};

0 comments on commit 1abfbf5

Please sign in to comment.