diff options
author | w0rp <devw0rp@gmail.com> | 2018-10-29 11:29:12 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-10-29 11:29:21 +0000 |
commit | 2846e862178e9a16e078799c28aa9d9d4a2ea505 (patch) | |
tree | 280fdf12616e46090cd4be58930a8b395ebbb43b /test/test_history_saving.vader | |
parent | 9dbebf1cb3909c47a69c07397a84da1369cf98d0 (diff) | |
download | ale-2846e862178e9a16e078799c28aa9d9d4a2ea505.zip |
#2017 Simplify lint cycles for supporting other sources later
Diffstat (limited to 'test/test_history_saving.vader')
-rw-r--r-- | test/test_history_saving.vader | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_history_saving.vader b/test/test_history_saving.vader index 375e96a1..d7a307b5 100644 --- a/test/test_history_saving.vader +++ b/test/test_history_saving.vader @@ -73,7 +73,7 @@ Execute(History should be set when commands are run): " Retry this test until it works. This one can randomly fail. for g:i in range(has('nvim-0.3') || has('win32') ? 5 : 1) let b:ale_history = [] - call ale#Lint() + call ale#Queue(0) call ale#engine#WaitForJobs(2000) let g:history = filter( @@ -106,7 +106,7 @@ Execute(History should be not set when disabled): let g:ale_history_enabled = 0 - call ale#Lint() + call ale#Queue(0) call ale#engine#WaitForJobs(2000) AssertEqual [], ale#history#Get(bufnr('')) @@ -120,7 +120,7 @@ Execute(History should include command output if logging is enabled): " Retry this test until it works. This one can randomly fail. for g:i in range(has('nvim-0.3') || has('win32') ? 5 : 1) let b:ale_history = [] - call ale#Lint() + call ale#Queue(0) call ale#engine#WaitForJobs(2000) let g:history = ale#history#Get(bufnr('')) |