diff options
Diffstat (limited to 'test/fixers/test_tidy_fixer_callback.vader')
-rw-r--r-- | test/fixers/test_tidy_fixer_callback.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixers/test_tidy_fixer_callback.vader b/test/fixers/test_tidy_fixer_callback.vader index 5677d8fd..a588d75e 100644 --- a/test/fixers/test_tidy_fixer_callback.vader +++ b/test/fixers/test_tidy_fixer_callback.vader @@ -1,7 +1,7 @@ Before: Save g:ale_html_tidy_executable - let g:ale_html_tidy_executable = 'tidy_paths/tidy' + let g:ale_html_tidy_executable = '../test-files/tidy/tidy' call ale#test#SetDirectory('/testplugin/test/fixers') @@ -23,7 +23,7 @@ Execute(The tidy callback should return 0 if tidy not found): Execute(The tidy callback should return the correct default command): AssertEqual \ { - \ 'command': ale#Escape('tidy_paths/tidy') + \ 'command': ale#Escape('../test-files/tidy/tidy') \ . ' -q --tidy-mark no --show-errors 0 --show-warnings 0' \ }, \ ale#fixers#tidy#Fix(bufnr('')) |