diff options
author | w0rp <devw0rp@gmail.com> | 2018-07-23 20:41:06 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-07-23 20:41:48 +0100 |
commit | d9579dbbe91af9e23328faafb92d664ad30c67ef (patch) | |
tree | 86aaa32765d026577174d959de180b5f98bee26e /test/test_ale_lint_command.vader | |
parent | 11339ca730cbd3462bc81b565596ef0c9c3c561a (diff) | |
download | ale-d9579dbbe91af9e23328faafb92d664ad30c67ef.zip |
Get tests to pass in Vim 8.1
Diffstat (limited to 'test/test_ale_lint_command.vader')
-rw-r--r-- | test/test_ale_lint_command.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_ale_lint_command.vader b/test/test_ale_lint_command.vader index 6434e45f..bc2ebabe 100644 --- a/test/test_ale_lint_command.vader +++ b/test/test_ale_lint_command.vader @@ -66,10 +66,10 @@ Execute(ALELint should run the linters): sleep 1ms endif - if getloclist(0) == g:expected_loclist + if ale#test#GetLoclistWithoutModule() == g:expected_loclist break endif endfor " Check the loclist - AssertEqual g:expected_loclist, getloclist(0) + AssertEqual g:expected_loclist, ale#test#GetLoclistWithoutModule() |