Skip to content

Commit

Permalink
Tweak a delay.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip committed Jan 15, 2022
1 parent bbd34f0 commit af17f61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_sarge.py
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ def test_exceptions(self):
cmd = 'echo "Hello" && eco "Goodbye"'
cap = Capture(buffer_size=1)
p = run(cmd, async_=True, stdout=cap)
time.sleep(0.01)
time.sleep(0.1) # Can be slow on Windows!
exceptions = p.exceptions
self.assertEqual(2, len(exceptions))
self.assertIsNone(exceptions[0])
Expand Down

0 comments on commit af17f61

Please sign in to comment.