Skip to content

Commit

Permalink
Increase timers to avoid false failures
Browse files Browse the repository at this point in the history
  • Loading branch information
Šarūnas Navickas committed Jun 4, 2016
1 parent 831a0a2 commit 688c63f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions robust/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def callback():
reached = True

_signal_timer(1, callback)
time.sleep(1)
time.sleep(2)
assert reached

def test_threading_timer(self):
Expand All @@ -161,5 +161,5 @@ def callback():
reached = True

_threading_timer(1, callback)
time.sleep(1)
time.sleep(2)
assert reached

0 comments on commit 688c63f

Please sign in to comment.