From 0e65962a6838ef36f8c518f067e753cbf40a87e5 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 10 Apr 2015 15:22:46 +0200 Subject: 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 --- test/functional/job/job_spec.lua | 1 - 1 file changed, 1 deletion(-) (limited to 'test') 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()) -- cgit