From b3f9e1051f7d194e18f6223ecfed2fb0fdeed958 Mon Sep 17 00:00:00 2001 From: Chiawen Chen Date: Fri, 14 Feb 2020 13:50:55 +0800 Subject: [PATCH] Fix lint error 3 --- tests/src/rules/default-import-match-filename.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/rules/default-import-match-filename.js b/tests/src/rules/default-import-match-filename.js index c557cf004..7be45f9c3 100644 --- a/tests/src/rules/default-import-match-filename.js +++ b/tests/src/rules/default-import-match-filename.js @@ -135,7 +135,7 @@ ruleTester.run('default-import-match-filename', rule, { ), { code: `import QWERTY from '../bbb/ccc';`, - output: undefined, + output: `import QWERTY from '../bbb/ccc';`, options: [{ignorePaths: ['aaa']}], errors: [{message: getMessage('ccc')}], },