diff options
author | Lance Stout <lancestout@gmail.com> | 2011-03-23 20:23:49 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-03-23 20:23:49 -0400 |
commit | d6f2e51b05b94934680c579804b6af3fe404d852 (patch) | |
tree | def95bad9cd944663899a1a8012fd6c00b524cb9 | |
parent | feb7f892ea5b1f046dba210db0cdd0cbdaeb1225 (diff) | |
download | slixmpp-d6f2e51b05b94934680c579804b6af3fe404d852.tar.gz slixmpp-d6f2e51b05b94934680c579804b6af3fe404d852.tar.bz2 slixmpp-d6f2e51b05b94934680c579804b6af3fe404d852.tar.xz slixmpp-d6f2e51b05b94934680c579804b6af3fe404d852.zip |
Allow SleekTest to wait longer when checking for sent stanzas.
Now timeouts at 0.5sec instead of 0.1sec, which should prevent test
failures from stanzas being delayed longer than usual.
-rw-r--r-- | sleekxmpp/test/sleektest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/test/sleektest.py b/sleekxmpp/test/sleektest.py index b5c28fde..c5f48895 100644 --- a/sleekxmpp/test/sleektest.py +++ b/sleekxmpp/test/sleektest.py @@ -578,7 +578,7 @@ class SleekTest(unittest.TestCase): raise ValueError("Uknown matching method: %s" % method) def send(self, data, defaults=None, use_values=True, - timeout=.1, method='exact'): + timeout=.5, method='exact'): """ Check that the XMPP client sent the given stanza XML. |