summaryrefslogtreecommitdiff
path: root/test/test_engine_invocation.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2019-02-13 17:53:01 +0000
committerw0rp <devw0rp@gmail.com>2019-02-13 17:53:01 +0000
commit21a8b9f1e3ea21e8f41cd3bc7da691687d173b83 (patch)
treedf88d8b80afe8989cff09ed9faea6e4c5477e310 /test/test_engine_invocation.vader
parent1ee56713b8f9cfd0faa99dd7930437fa7ed986b0 (diff)
downloadale-21a8b9f1e3ea21e8f41cd3bc7da691687d173b83.zip
Make it easier to remove command_chain support later
Diffstat (limited to 'test/test_engine_invocation.vader')
-rw-r--r--test/test_engine_invocation.vader5
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: