summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2014-08-17 21:49:03 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-09-01 02:47:15 +0200
commited37174a2b40d2d90aa6a0c7f778108687d39602 (patch)
tree307a0dd3468f9e7d96ef72676dadd50335efebbf /tests
parent866014896091d83164a6503adf9035146cf49963 (diff)
downloadslixmpp-ed37174a2b40d2d90aa6a0c7f778108687d39602.tar.gz
slixmpp-ed37174a2b40d2d90aa6a0c7f778108687d39602.tar.bz2
slixmpp-ed37174a2b40d2d90aa6a0c7f778108687d39602.tar.xz
slixmpp-ed37174a2b40d2d90aa6a0c7f778108687d39602.zip
Always use OrderedDict from collections, and remove its implementation in slixmpp.thirdparty.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_stanza_element.py2
-rw-r--r--tests/test_stanza_xep_0004.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_stanza_element.py b/tests/test_stanza_element.py
index 9241ed46..52ca87f0 100644
--- a/tests/test_stanza_element.py
+++ b/tests/test_stanza_element.py
@@ -1,7 +1,7 @@
import unittest
from slixmpp.test import SlixTest
from slixmpp.xmlstream.stanzabase import ElementBase, register_stanza_plugin, ET
-from slixmpp.thirdparty import OrderedDict
+from collections import OrderedDict
class TestElementBase(SlixTest):
diff --git a/tests/test_stanza_xep_0004.py b/tests/test_stanza_xep_0004.py
index 93f2703b..b95b64ca 100644
--- a/tests/test_stanza_xep_0004.py
+++ b/tests/test_stanza_xep_0004.py
@@ -1,7 +1,7 @@
import unittest
from slixmpp import Message
from slixmpp.test import SlixTest
-from slixmpp.thirdparty import OrderedDict
+from collections import OrderedDict
import slixmpp.plugins.xep_0004 as xep_0004
from slixmpp.xmlstream import register_stanza_plugin