We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1596b29 commit 0fa0c7eCopy full SHA for 0fa0c7e
_hp/hp/test_internals.py
@@ -65,8 +65,9 @@ def test_get_or_create_browser():
65
assert browser == 1
66
67
def test_get_child_processes():
68
- """Check that 0 has a couple of childs
+ """Check that 0 or 1 has a couple of childs
69
"""
70
- process_list = get_child_processes(0)
71
- assert len(process_list) > 5
+ process_list_m = get_child_processes(0)
+ process_list_l = get_child_processes(1)
72
+ assert len(process_list_m) > 5 or len(process_list_l) > 5
73
0 commit comments