Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJeff 'Raid' Baitis <jeff@baitis.net>2018-01-22 21:40:24 +0300
committerJeff 'Raid' Baitis <jeff@baitis.net>2018-01-22 22:49:37 +0300
commit3759d612a980ba65f32d29bf408ed6ad296c8b51 (patch)
tree96ad9e75013d67c1778b44d7a930521492df9e6b /test
parente064374efac494e03973fa45f9cd2eb152a8ff03 (diff)
Unit test the SelectIdleQueue (and not an unusued implementation)
Diffstat (limited to 'test')
-rw-r--r--test/lib/xmpp_mocks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/xmpp_mocks.py b/test/lib/xmpp_mocks.py
index a2b9799..2bfe7cb 100644
--- a/test/lib/xmpp_mocks.py
+++ b/test/lib/xmpp_mocks.py
@@ -16,7 +16,7 @@ class IdleQueueThread(threading.Thread):
Thread for regular processing of idlequeue.
'''
def __init__(self):
- self.iq = idlequeue.IdleQueue()
+ self.iq = idlequeue.SelectIdleQueue()
self.stop = threading.Event() # Event to stop the thread main loop.
self.stop.clear()
threading.Thread.__init__(self)