summaryrefslogtreecommitdiff
path: root/test/fixers/test_rubocop_fixer_callback.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-10-01 20:23:41 +0100
committerw0rp <devw0rp@gmail.com>2017-10-01 20:23:41 +0100
commit5091e2de452e493678e236c92b2ca5bb7bc29653 (patch)
tree4fa1e0a06568a6592ce82e0cdc9660d08cc52cdb /test/fixers/test_rubocop_fixer_callback.vader
parent638ca4208232ab7abe46efa5052403e58dcfc35a (diff)
downloadale-5091e2de452e493678e236c92b2ca5bb7bc29653.zip
Get fixer tests to work on Windows
Diffstat (limited to 'test/fixers/test_rubocop_fixer_callback.vader')
-rw-r--r--test/fixers/test_rubocop_fixer_callback.vader4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixers/test_rubocop_fixer_callback.vader b/test/fixers/test_rubocop_fixer_callback.vader
index 87d56d07..ff2ca965 100644
--- a/test/fixers/test_rubocop_fixer_callback.vader
+++ b/test/fixers/test_rubocop_fixer_callback.vader
@@ -34,7 +34,7 @@ Execute(The rubocop callback should include configuration files):
\ {
\ 'read_temporary_file': 1,
\ 'command': ale#Escape(g:ale_ruby_rubocop_executable)
- \ . ' --config ' . ale#Escape(g:dir . '/ruby_paths/with_config/.rubocop.yml')
+ \ . ' --config ' . ale#Escape(ale#path#Winify(g:dir . '/ruby_paths/with_config/.rubocop.yml'))
\ . ' --auto-correct %t',
\ },
\ ale#fixers#rubocop#Fix(bufnr(''))
@@ -47,7 +47,7 @@ Execute(The rubocop callback should include custom rubocop options):
\ {
\ 'read_temporary_file': 1,
\ 'command': ale#Escape(g:ale_ruby_rubocop_executable)
- \ . ' --config ' . ale#Escape(g:dir . '/ruby_paths/with_config/.rubocop.yml')
+ \ . ' --config ' . ale#Escape(ale#path#Winify(g:dir . '/ruby_paths/with_config/.rubocop.yml'))
\ . ' --except Lint/Debugger'
\ . ' --auto-correct %t',
\ },