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

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2008-12-16 00:06:08 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-12-16 00:06:08 +0300
commitb317ffcdaee2816416fa15ed03ac6d44496ae5f5 (patch)
tree5e85b8440c8afcc732f9e0da4c38b9439ab1c4dd /test/test_dispatcher_nb.py
parent6fc912880bdf9de8331d8b59ec7e228bc47816a6 (diff)
parenta7c36048b93ec338e23687e29a96d2ac1d420217 (diff)
merge BOSH branch to trunk
Diffstat (limited to 'test/test_dispatcher_nb.py')
-rw-r--r--test/test_dispatcher_nb.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_dispatcher_nb.py b/test/test_dispatcher_nb.py
index 45402f66b..9af6717b8 100644
--- a/test/test_dispatcher_nb.py
+++ b/test/test_dispatcher_nb.py
@@ -7,18 +7,18 @@ lib.setup_env()
from mock import Mock
from common.xmpp import dispatcher_nb
-from common.xmpp import auth
+from common.xmpp import auth_nb
class TestDispatcherNB(unittest.TestCase):
def test_unbound_namespace_prefix(self):
'''tests our handling of a message with an unbound namespace prefix'''
- d = dispatcher_nb.Dispatcher()
+ d = dispatcher_nb.XMPPDispatcher()
conn = Mock()
owner = Mock()
owner._caller = Mock()
- owner.defaultNamespace = auth.NS_CLIENT
+ owner.defaultNamespace = auth_nb.NS_CLIENT
owner.debug_flags = []
owner.Connection = conn
owner._component = False