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
diff options
context:
space:
mode:
authorAndré Apitzsch <git@apitzsch.eu>2019-02-07 01:48:09 +0300
committerAndré Apitzsch <git@apitzsch.eu>2019-02-07 01:48:09 +0300
commitfaf5cd48f87f73e7f92382c4e339d532c1b70409 (patch)
tree1cbdefb471c07c40f913aea164913fdd50392a25 /test/broken
parentd3df75cba9c969ef878290e51dc2cf74511acf92 (diff)
Remove suffix from dispatcher_nb
Diffstat (limited to 'test/broken')
-rw-r--r--test/broken/test_xmpp_smacks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/broken/test_xmpp_smacks.py b/test/broken/test_xmpp_smacks.py
index fa66065..4ccd704 100644
--- a/test/broken/test_xmpp_smacks.py
+++ b/test/broken/test_xmpp_smacks.py
@@ -4,7 +4,7 @@ Tests for smacks.py Stream Management
import unittest
from unittest.mock import Mock
-from nbxmpp import dispatcher_nb
+from nbxmpp import dispatcher
from nbxmpp import protocol
from nbxmpp import smacks
@@ -14,7 +14,7 @@ class TestDispatcherNB(unittest.TestCase):
into a mock client
'''
def setUp(self):
- self.dispatcher = dispatcher_nb.XMPPDispatcher()
+ self.dispatcher = dispatcher.XMPPDispatcher()
# Setup mock client
self.client = Mock()