diff options
author | Lance Stout <lancestout@gmail.com> | 2012-04-30 11:16:10 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-04-30 11:16:10 -0700 |
commit | a9acff5294fa6c349d113236de07d0e8dae186a1 (patch) | |
tree | 01e2691273e1e2d66063a8794834dee72f3906d2 /tests/test_stream_xep_0050.py | |
parent | ad5b61de50ca4fbcc445ceae8db568be6518e66e (diff) | |
download | slixmpp-a9acff5294fa6c349d113236de07d0e8dae186a1.tar.gz slixmpp-a9acff5294fa6c349d113236de07d0e8dae186a1.tar.bz2 slixmpp-a9acff5294fa6c349d113236de07d0e8dae186a1.tar.xz slixmpp-a9acff5294fa6c349d113236de07d0e8dae186a1.zip |
Collapse initial payload to a single stanza instead of a list if only one stanza is found.
Diffstat (limited to 'tests/test_stream_xep_0050.py')
-rw-r--r-- | tests/test_stream_xep_0050.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_stream_xep_0050.py b/tests/test_stream_xep_0050.py index 373bce64..5ad9d6ae 100644 --- a/tests/test_stream_xep_0050.py +++ b/tests/test_stream_xep_0050.py @@ -35,7 +35,7 @@ class TestAdHocCommands(SleekTest): logging.debug(initial) new_payload = TestPayload() if initial: - new_payload['bar'] = 'Received: %s' % initial[0]['bar'] + new_payload['bar'] = 'Received: %s' % initial['bar'] else: new_payload['bar'] = 'Failed' |