diff options
author | Lance Stout <lancestout@gmail.com> | 2013-03-11 16:41:44 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-03-11 16:41:44 -0700 |
commit | 5a771dbe2fd491b30e21ee485f4f4e1e67eaf656 (patch) | |
tree | 3c40344c7b83792fd95ececcd9a608d25142f340 | |
parent | 9ba5b644cf814e8515d5b2449ce01595d2689cf4 (diff) | |
download | slixmpp-5a771dbe2fd491b30e21ee485f4f4e1e67eaf656.tar.gz slixmpp-5a771dbe2fd491b30e21ee485f4f4e1e67eaf656.tar.bz2 slixmpp-5a771dbe2fd491b30e21ee485f4f4e1e67eaf656.tar.xz slixmpp-5a771dbe2fd491b30e21ee485f4f4e1e67eaf656.zip |
Prevent race condition in pubsub test.
-rw-r--r-- | tests/test_stream_xep_0060.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_stream_xep_0060.py b/tests/test_stream_xep_0060.py index e0936660..0ad14b02 100644 --- a/tests/test_stream_xep_0060.py +++ b/tests/test_stream_xep_0060.py @@ -431,7 +431,7 @@ class TestStreamPubsub(SleekTest): </publish> </pubsub> </iq> - """) + """, use_values=False) def testPublishSingleOptions(self): """Test publishing a single item, with options.""" |