diff options
Diffstat (limited to 'test/command_callback/test_scss_stylelint_command_callback.vader')
-rw-r--r-- | test/command_callback/test_scss_stylelint_command_callback.vader | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/command_callback/test_scss_stylelint_command_callback.vader b/test/command_callback/test_scss_stylelint_command_callback.vader index 9c3a02d8..5a1e71c6 100644 --- a/test/command_callback/test_scss_stylelint_command_callback.vader +++ b/test/command_callback/test_scss_stylelint_command_callback.vader @@ -7,11 +7,11 @@ After: call ale#assert#TearDownLinterTest() Execute(node_modules directories should be discovered): - call ale#test#SetFilename('stylelint_paths/nested/testfile.scss') + call ale#test#SetFilename('../test-files/stylelint/nested/testfile.scss') let b:executable = ale#path#Simplify( \ g:dir - \ . '/stylelint_paths/node_modules/.bin/stylelint' + \ . '/../test-files/stylelint/node_modules/.bin/stylelint' \) AssertLinter b:executable, ale#Escape(b:executable) . ' --stdin-filename %s' @@ -20,7 +20,7 @@ Execute(The global override should work): let b:ale_scss_stylelint_executable = 'foobar' let b:ale_scss_stylelint_use_global = 1 - call ale#test#SetFilename('stylelint_paths/nested/testfile.scss') + call ale#test#SetFilename('../test-files/stylelint/nested/testfile.scss') AssertLinter 'foobar', ale#Escape('foobar') . ' --stdin-filename %s' |