summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-06-19 18:19:44 -0700
committerLance Stout <lancestout@gmail.com>2012-06-19 18:19:44 -0700
commit36c11ad9de7c1b5a199aa5a4302e33085513c126 (patch)
treedac968912daac31694f79b3a7926f6527b981cda /tests
parent019a4b20ae5284ec07d4ecc5e5136be5012e88bd (diff)
downloadslixmpp-36c11ad9de7c1b5a199aa5a4302e33085513c126.tar.gz
slixmpp-36c11ad9de7c1b5a199aa5a4302e33085513c126.tar.bz2
slixmpp-36c11ad9de7c1b5a199aa5a4302e33085513c126.tar.xz
slixmpp-36c11ad9de7c1b5a199aa5a4302e33085513c126.zip
Ordering fixes for Python3.3
Diffstat (limited to 'tests')
-rw-r--r--tests/test_stanza_xep_0050.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_stanza_xep_0050.py b/tests/test_stanza_xep_0050.py
index ae584de4..e02e86c3 100644
--- a/tests/test_stanza_xep_0050.py
+++ b/tests/test_stanza_xep_0050.py
@@ -49,7 +49,7 @@ class TestAdHocCommandStanzas(SleekTest):
iq['command']['actions'] = ['prev', 'next']
results = iq['command']['actions']
- expected = ['prev', 'next']
+ expected = set(['prev', 'next'])
self.assertEqual(results, expected,
"Incorrect next actions: %s" % results)