aboutsummaryrefslogtreecommitdiff
path: root/test/functional/core
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-11-01 00:11:12 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-11-01 17:17:07 +0100
commitf5671c8614c2e0b75114fe31057efc387847fca7 (patch)
tree37b2f79b60589a56237effe4c93398db2cf71046 /test/functional/core
parent8480b74010254a23768085796ef0518becce1df6 (diff)
downloadrneovim-f5671c8614c2e0b75114fe31057efc387847fca7.tar.gz
rneovim-f5671c8614c2e0b75114fe31057efc387847fca7.tar.bz2
rneovim-f5671c8614c2e0b75114fe31057efc387847fca7.zip
win: test: SIGWINCH is noisy #7506
Diffstat (limited to 'test/functional/core')
-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