diff options
Diffstat (limited to 'test/functional/core/job_spec.lua')
-rw-r--r-- | test/functional/core/job_spec.lua | 2 |
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 |