From 5cde9aad3024b3771959999513ba2d880b2b3bff Mon Sep 17 00:00:00 2001 From: Kevin Stone Date: Wed, 25 Sep 2019 12:22:22 -0500 Subject: [PATCH] Fix lint test error on Windows (#401) --- test/lint-files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lint-files.js b/test/lint-files.js index 71e7bba4..67afbfc6 100644 --- a/test/lint-files.js +++ b/test/lint-files.js @@ -122,7 +122,7 @@ test('enable rules based on nodeVersion', async t => { }); test('do not lint eslintignored files', async t => { - const cwd = path.join(__dirname, 'fixtures/eslintignore/'); + const cwd = path.join(__dirname, 'fixtures/eslintignore'); const glob = path.posix.join(cwd, '*'); const positive = path.resolve('fixtures/eslintignore/foo.js'); const negative = path.resolve('fixtures/eslintignore/bar.js');