diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2016-12-13 14:48:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-13 14:48:42 +0100 |
commit | 5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec (patch) | |
tree | de8c529a55d9787a0f7a98a5a20a6d217a87cc24 /test | |
parent | dbe41fe310fd558f402364a8425373318aad827e (diff) | |
download | rneovim-5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec.tar.gz rneovim-5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec.tar.bz2 rneovim-5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec.zip |
Make VimL code compatible with merged Partial support (#5765)
Closes #5763.
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/core/job_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index 34085fa522..fa38671529 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -368,11 +368,11 @@ describe('jobs', function() eq({'notification', 'wait', {{-2}}}, next_msg()) end) - pending('can be called recursively', function() + it('can be called recursively', function() source([[ let g:opts = {} let g:counter = 0 - function g:opts.on_stdout(id, msg) + function g:opts.on_stdout(id, msg, _event) if self.state == 0 if self.counter < 10 call Run() @@ -390,7 +390,7 @@ describe('jobs', function() call jobclose(a:id, 'stdin') endif endfunction - function g:opts.on_exit() + function g:opts.on_exit(...) call rpcnotify(g:channel, 'w', printf('job %d exited', self.counter)) endfunction function Run() |