We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 315074a commit d69aae0Copy full SHA for d69aae0
tests/test_utils.py
@@ -96,11 +96,12 @@ def test_spawn_echo(self):
96
in_file=a["err"],
97
**kw
98
)
99
+ sleep(1)
100
pdb.drop(p)
- sleep(2)
101
o = Path(b["out"]).read_text()
102
e = Path(b["err"]).read_text()
103
kill_pid(b["pid"])
104
105
pdb.drop(b)
106
self.assertEqual(e, "", b["name"])
107
self.assertRegex(o, r"\A456\W?\Z", b["name"])
0 commit comments