aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2015-04-10 15:22:46 +0200
committerMarco Hinz <mh.codebro@gmail.com>2015-04-11 18:32:18 +0200
commit0e65962a6838ef36f8c518f067e753cbf40a87e5 (patch)
tree13828f1133ac5f2d723894ca82bd3ef0cefb539b /test
parent8171fc4cbc9cfe368bca7a7e711e198b976bf4f7 (diff)
downloadrneovim-0e65962a6838ef36f8c518f067e753cbf40a87e5.tar.gz
rneovim-0e65962a6838ef36f8c518f067e753cbf40a87e5.tar.bz2
rneovim-0e65962a6838ef36f8c518f067e753cbf40a87e5.zip
Remove all references to JobActivity
The JobActivity event got replaced by callback functions provided to jobstart() or termopen(). It got removed here: https://github.com/neovim/neovim/commit/6e7757ad51dfe3b2de857ff8a8688718ff6115ac
Diffstat (limited to 'test')
-rw-r--r--test/functional/job/job_spec.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/job/job_spec.lua b/test/functional/job/job_spec.lua
index 8191b63a1c..df989b3ef9 100644
--- a/test/functional/job/job_spec.lua
+++ b/test/functional/job/job_spec.lua
@@ -61,7 +61,6 @@ describe('jobs', function()
file:write("abc\0def\n")
file:close()
- -- v:job_data preserves NULs.
nvim('command', "let j = jobstart(['cat', '"..filename.."'], g:job_opts)")
eq({'notification', 'stdout', {0, {'abc\ndef', ''}}}, next_msg())
eq({'notification', 'exit', {0, 0}}, next_msg())