Skip to content

Commit d69aae0

Browse files
jet-logicjet-logic
authored andcommitted
sleep on test_spawn_echo
1 parent 315074a commit d69aae0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,12 @@ def test_spawn_echo(self):
9696
in_file=a["err"],
9797
**kw
9898
)
99+
sleep(1)
99100
pdb.drop(p)
100-
sleep(2)
101101
o = Path(b["out"]).read_text()
102102
e = Path(b["err"]).read_text()
103103
kill_pid(b["pid"])
104+
sleep(1)
104105
pdb.drop(b)
105106
self.assertEqual(e, "", b["name"])
106107
self.assertRegex(o, r"\A456\W?\Z", b["name"])

0 commit comments

Comments
 (0)