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 e1df65b commit 6ef06fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/lib/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/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 6ef06fa

Please sign in to comment.