Skip to content

Commit

Permalink
Chore: fix tests to follow moving files in eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticatea committed Aug 15, 2018
1 parent 51be232 commit 044ecce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/lib/rules/no-missing-import.js
Expand Up @@ -29,7 +29,7 @@ ruleTester.run("no-missing-import", rule, {
filename: fixture("test.js"),
},
{
code: "import eslint from 'eslint/lib/ast-utils';",
code: "import eslint from 'eslint/lib/api';",
filename: fixture("test.js"),
},
{
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/rules/no-missing-require.js
Expand Up @@ -31,7 +31,7 @@ ruleTester.run("no-missing-require", rule, {
env: { node: true },
},
{
code: "require('eslint/lib/ast-utils');",
code: "require('eslint/lib/api');",
filename: fixture("test.js"),
env: { node: true },
},
Expand Down

0 comments on commit 044ecce

Please sign in to comment.