summaryrefslogtreecommitdiff
path: root/test/command_callback/test_remark_lint_command_callbacks.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/command_callback/test_remark_lint_command_callbacks.vader')
-rw-r--r--test/command_callback/test_remark_lint_command_callbacks.vader8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/command_callback/test_remark_lint_command_callbacks.vader b/test/command_callback/test_remark_lint_command_callbacks.vader
index f3ab7550..a34f0a90 100644
--- a/test/command_callback/test_remark_lint_command_callbacks.vader
+++ b/test/command_callback/test_remark_lint_command_callbacks.vader
@@ -22,16 +22,16 @@ Execute(The options should be configurable):
\ ale#Escape('remark') . ' --something --no-stdout --no-color'
Execute(The local executable from .bin should be used if available):
- call ale#test#SetFilename('remark_lint_paths/with_bin_path/foo.md')
+ call ale#test#SetFilename('../test-files/remark_lint/with_bin_path/foo.md')
AssertLinter
- \ ale#path#Simplify(g:dir . '/remark_lint_paths/with_bin_path/node_modules/.bin/remark'),
- \ ale#Escape(ale#path#Simplify(g:dir . '/remark_lint_paths/with_bin_path/node_modules/.bin/remark'))
+ \ ale#path#Simplify(g:dir . '/../test-files/remark_lint/with_bin_path/node_modules/.bin/remark'),
+ \ ale#Escape(ale#path#Simplify(g:dir . '/../test-files/remark_lint/with_bin_path/node_modules/.bin/remark'))
\ . ' --no-stdout --no-color'
Execute(The global executable should be uesd if the option is set):
let b:ale_markdown_remark_lint_use_global = 1
- call ale#test#SetFilename('remark_lint_paths/with_bin_path/foo.md')
+ call ale#test#SetFilename('../test-files/remark_lint/with_bin_path/foo.md')
AssertLinter 'remark', ale#Escape('remark')
\ . ' --no-stdout --no-color'