diff options
author | Carlos Ramos <carakan@gmail.com> | 2017-10-16 12:08:10 -0400 |
---|---|---|
committer | Carlos Ramos <carakan@gmail.com> | 2017-10-16 12:08:10 -0400 |
commit | 8a8879a28fe2decc06739fdd2244ea0e021625c0 (patch) | |
tree | e95debe0fc0e7715edaa3955f0b12a5a3c55c037 /test | |
parent | 07ebfbeef0ac3eb895182675c87cd5324bd3bf3c (diff) | |
download | ale-8a8879a28fe2decc06739fdd2244ea0e021625c0.zip |
fix test't
Diffstat (limited to 'test')
-rw-r--r-- | test/fixers/test_tslint_fixer_callback.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixers/test_tslint_fixer_callback.vader b/test/fixers/test_tslint_fixer_callback.vader index 73871137..5bfafe24 100644 --- a/test/fixers/test_tslint_fixer_callback.vader +++ b/test/fixers/test_tslint_fixer_callback.vader @@ -3,7 +3,7 @@ Before: Save g:ale_typescript_tslint_config_path let g:ale_typescript_tslint_executable = 'xxxinvalid' - let g:ale_typescript_tslint_config_path = '' + let g:ale_typescript_tslint_config_path = 'tslint.json' call ale#test#SetDirectory('/testplugin/test/fixers') silent cd .. @@ -22,7 +22,7 @@ Execute(The tslint callback should return the correct default values): \ { \ 'read_temporary_file': 1, \ 'command': ale#Escape(g:ale_typescript_tslint_executable) - \ . ' -c tslint.json' + \ . ' -c ' . ale#Escape('tslint.json') \ . ' --fix %t', \ }, \ ale#fixers#tslint#Fix(bufnr('')) |