fix test't

This commit is contained in:
Carlos Ramos 2017-10-16 12:08:10 -04:00
parent 07ebfbeef0
commit 8a8879a28f
1 changed files with 2 additions and 2 deletions

View File

@ -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(''))