Skip to content

Commit

Permalink
fix: failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aladdin-add committed May 22, 2019
1 parent 456b366 commit 98bda3c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/lib/linter/code-path-analysis/code-path.js
Expand Up @@ -303,6 +303,6 @@ describe("CodePathAnalyzer", () => {
*/
});

/* eslint-enable rulesdir/multiline-comment-style */
/* eslint-enable internal-rules/multiline-comment-style */
});
});
4 changes: 2 additions & 2 deletions tests/lib/linter/rules.js
Expand Up @@ -10,9 +10,9 @@
//------------------------------------------------------------------------------

const assert = require("chai").assert,
Rules = require("../../lib/linter/rules");
Rules = require("../../../lib/linter/rules");

const { Linter } = require("../../lib/linter");
const { Linter } = require("../../../lib/linter/linter");

//------------------------------------------------------------------------------
// Tests
Expand Down
4 changes: 2 additions & 2 deletions tests/lib/rules/no-inline-comments.js
Expand Up @@ -31,8 +31,8 @@ ruleTester.run("no-inline-comments", rule, {
"// A valid comment before code\nvar a = 1;",
"var a = 2;\n// A valid comment after code",
"// A solitary comment",
"var a = 1; // eslint-disable-line some-rule",
"var a = 1; /* eslint-disable-line some-rule */"
"var a = 1; // eslint-disable-line no-debugger",
"var a = 1; /* eslint-disable-line no-debugger */"
],

invalid: [
Expand Down

0 comments on commit 98bda3c

Please sign in to comment.