diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/core/job_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index 6feec4e8a3..adc9f88099 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -777,9 +777,9 @@ describe('jobs', function() retry(nil, nil, function() children = meths.get_proc_children(ppid) if iswin() then - -- On Windows there is conhost.exe always, - -- and e.g. vctip.exe might appear. #10783 - ok(#children >= 4 and #children <= 5) + -- On Windows conhost.exe may exist, and + -- e.g. vctip.exe might appear. #10783 + ok(#children >= 3 and #children <= 5) else eq(3, #children) end |