summaryrefslogtreecommitdiff
path: root/test/test_temporary_file_management.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-10-29 11:29:12 +0000
committerw0rp <devw0rp@gmail.com>2018-10-29 11:29:21 +0000
commit2846e862178e9a16e078799c28aa9d9d4a2ea505 (patch)
tree280fdf12616e46090cd4be58930a8b395ebbb43b /test/test_temporary_file_management.vader
parent9dbebf1cb3909c47a69c07397a84da1369cf98d0 (diff)
downloadale-2846e862178e9a16e078799c28aa9d9d4a2ea505.zip
#2017 Simplify lint cycles for supporting other sources later
Diffstat (limited to 'test/test_temporary_file_management.vader')
-rw-r--r--test/test_temporary_file_management.vader4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_temporary_file_management.vader b/test/test_temporary_file_management.vader
index e248331c..4847706a 100644
--- a/test/test_temporary_file_management.vader
+++ b/test/test_temporary_file_management.vader
@@ -67,7 +67,7 @@ Given foobar (Some imaginary filetype):
Execute(ALE should delete managed files/directories appropriately after linting):
AssertEqual 'foobar', &filetype
- call ale#Lint()
+ call ale#Queue(0)
call ale#engine#WaitForJobs(2000)
Assert !filereadable(g:filename), 'The temporary file was not deleted'
@@ -79,7 +79,7 @@ Execute(ALE should delete managed files even if no command is run):
let g:command = ''
- call ale#Lint()
+ call ale#Queue(0)
call ale#engine#WaitForJobs(2000)
Assert !filereadable(g:filename), 'The temporary file was not deleted'