diff options
Diffstat (limited to 'test/test_engine_invocation.vader')
-rw-r--r-- | test/test_engine_invocation.vader | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test_engine_invocation.vader b/test/test_engine_invocation.vader index c56895d3..b43fa448 100644 --- a/test/test_engine_invocation.vader +++ b/test/test_engine_invocation.vader @@ -34,7 +34,10 @@ Before: \} function! ProcessIndex(chain_index) - return ale#engine#ProcessChain(347, g:linter, a:chain_index, []) + let [l:command, l:options] = ale#engine#ProcessChain(347, '', g:linter, a:chain_index, []) + let l:options.command = l:command + + return l:options endfunction After: |