summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-22 00:43:39 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-22 00:43:39 +0100
commit475df0102a4f99700aa7729c8c9feeb3116db72f (patch)
treec735e0df7cec6d52d928868d4fdd353f8141c920 /tests
parent379b480c594bb291f7eb3716b2cb03edf8195c38 (diff)
downloadaioeventlet-475df0102a4f99700aa7729c8c9feeb3116db72f.tar.gz
Revert debug commit
Diffstat (limited to 'tests')
-rw-r--r--tests/test_timer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_timer.py b/tests/test_timer.py
index 4d8d501..fbb492b 100644
--- a/tests/test_timer.py
+++ b/tests/test_timer.py
@@ -31,9 +31,9 @@ class TimerTests(tests.TestCase):
result.append("World")
loop.stop()
- self.loop.call_later(0.5, hello)
- self.loop.call_later(1.0, self.loop.stop)
- self.loop.call_later(1.5, world, self.loop)
+ self.loop.call_later(0.050, hello)
+ self.loop.call_later(0.100, self.loop.stop)
+ self.loop.call_later(0.150, world, self.loop)
self.loop.run_forever()
eventlet.sleep(0.200)