diff options
author | w0rp <devw0rp@gmail.com> | 2019-02-22 20:48:06 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-02-22 20:48:06 +0000 |
commit | 89e54918623f6ed42beed5c7c33bee796676449c (patch) | |
tree | 235de744c804c704e06df97fac2160aa2ae9e9ba /test/fix/test_ale_fix.vader | |
parent | 883978ece93bd19250d6d7e8b9659b48f23522e2 (diff) | |
download | ale-89e54918623f6ed42beed5c7c33bee796676449c.zip |
Revert "#2132 Change (buffer, lines) fixer functions to (buffer, done, lines)"
This reverts commit f1ed654ca5318de5a24b37d882e55e04e4e566c8.
Diffstat (limited to 'test/fix/test_ale_fix.vader')
-rw-r--r-- | test/fix/test_ale_fix.vader | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/fix/test_ale_fix.vader b/test/fix/test_ale_fix.vader index 500eb71c..bf18345d 100644 --- a/test/fix/test_ale_fix.vader +++ b/test/fix/test_ale_fix.vader @@ -34,21 +34,21 @@ Before: call ale#test#SetFilename('test.txt') call ale#linter#PreventLoading('testft') - function AddCarets(buffer, done, lines) abort + function AddCarets(buffer, lines) abort " map() is applied to the original lines here. " This way, we can ensure that defensive copies are made. return map(a:lines, '''^'' . v:val') endfunction - function AddDollars(buffer, done, lines) abort + function AddDollars(buffer, lines) abort return map(a:lines, '''$'' . v:val') endfunction - function DoNothing(buffer, done, lines) abort + function DoNothing(buffer, lines) abort return 0 endfunction - function CatLine(buffer, done, lines) abort + function CatLine(buffer, lines) abort return {'command': 'cat - <(echo d)'} endfunction @@ -56,15 +56,15 @@ Before: return {'command': 'cat - <(echo d)'} endfunction - function ReplaceWithTempFile(buffer, done, lines) abort + function ReplaceWithTempFile(buffer, lines) abort return {'command': 'echo x > %t', 'read_temporary_file': 1} endfunction - function CatWithTempFile(buffer, done, lines) abort + function CatWithTempFile(buffer, lines) abort return {'command': 'cat %t <(echo d)'} endfunction - function RemoveLastLine(buffer, done, lines) abort + function RemoveLastLine(buffer, lines) abort return ['a', 'b'] endfunction @@ -127,11 +127,11 @@ Before: endfunction " echo will output a single blank line, and we should ingore it. - function! IgnoredEmptyOutput(buffer, done, output) + function! IgnoredEmptyOutput(buffer, output) return {'command': has('win32') ? 'echo(' : 'echo'} endfunction - function! EchoLineNoPipe(buffer, done, output) + function! EchoLineNoPipe(buffer, output) return {'command': 'echo new line', 'read_buffer': 0} endfunction @@ -438,7 +438,7 @@ Execute(ALEFix should accept lambdas): " to make the test pass. call setline(1, ['a', 'b', 'c', 'd']) else - let g:ale_fixers.testft = [{buffer, done, lines -> lines + ['d']}] + let g:ale_fixers.testft = [{buffer, lines -> lines + ['d']}] ALEFix call ale#test#FlushJobs() endif |