diff options
author | Lance Stout <lancestout@gmail.com> | 2012-10-31 13:41:55 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-10-31 13:41:55 -0700 |
commit | 2229ad8d8e51b73a7900b118dfab5d7b449f17ce (patch) | |
tree | 526503cfbd0ec7645a4fa6638d6494c17157e2a2 | |
parent | 61aff9f49ad0c2352553280a5dc60d2877bd245d (diff) | |
download | slixmpp-2229ad8d8e51b73a7900b118dfab5d7b449f17ce.tar.gz slixmpp-2229ad8d8e51b73a7900b118dfab5d7b449f17ce.tar.bz2 slixmpp-2229ad8d8e51b73a7900b118dfab5d7b449f17ce.tar.xz slixmpp-2229ad8d8e51b73a7900b118dfab5d7b449f17ce.zip |
Relax timing issues in Iq timeout callback test.
-rw-r--r-- | tests/test_stream_handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_stream_handlers.py b/tests/test_stream_handlers.py index cdd128bb..d3850a94 100644 --- a/tests/test_stream_handlers.py +++ b/tests/test_stream_handlers.py @@ -177,7 +177,7 @@ class TestHandlers(SleekTest): """) # Give event queue time to process - time.sleep(0.1) + time.sleep(1) self.failUnless(events == ['timeout'], "Iq timeout was not executed: %s" % events) |