aboutsummaryrefslogtreecommitdiff
path: root/test/functional/core/job_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-11-01 20:42:20 +0100
committerGitHub <noreply@github.com>2018-11-01 20:42:20 +0100
commitc45a859171090746c8b81f183474c22e489b8ad0 (patch)
tree5f84ed4da4d3f70155fbfeb208f30330ae80c667 /test/functional/core/job_spec.lua
parentf1b67c3453c6ac3e6e6cf606898eb98704bd4d40 (diff)
parentf5671c8614c2e0b75114fe31057efc387847fca7 (diff)
downloadrneovim-c45a859171090746c8b81f183474c22e489b8ad0.tar.gz
rneovim-c45a859171090746c8b81f183474c22e489b8ad0.tar.bz2
rneovim-c45a859171090746c8b81f183474c22e489b8ad0.zip
Merge #7506 'deps: update libuv'
Diffstat (limited to 'test/functional/core/job_spec.lua')
-rw-r--r--test/functional/core/job_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua
index f8488ca7a3..34168e10c2 100644
--- a/test/functional/core/job_spec.lua
+++ b/test/functional/core/job_spec.lua
@@ -731,7 +731,7 @@ describe('jobs', function()
local children
retry(nil, nil, function()
children = meths.get_proc_children(ppid)
- eq(3, #children)
+ eq((iswin() and 4 or 3), #children)
end)
-- Assert that nvim_get_proc() sees the children.
for _, child_pid in ipairs(children) do