diff options
author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2010-01-25 17:58:11 +0000 |
---|---|---|
committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2010-01-25 17:58:11 +0000 |
commit | 6536b1dcdee2da5db3554d47aa1cd694e8cb8f11 (patch) | |
tree | b027c46ac6fc490d1faeebeb7ea34f5bd63ea752 /qpid/python/qmf2/tests/basic_query.py | |
parent | fadd169527df40c715e549f538d256fc23bab3da (diff) | |
download | qpid-python-qmfv2.tar.gz |
QPID-2261: fix path to modules.qmfv2
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/qmfv2@902894 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/qmf2/tests/basic_query.py')
-rw-r--r-- | qpid/python/qmf2/tests/basic_query.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qpid/python/qmf2/tests/basic_query.py b/qpid/python/qmf2/tests/basic_query.py index 46dc87f4a1..2009f5c594 100644 --- a/qpid/python/qmf2/tests/basic_query.py +++ b/qpid/python/qmf2/tests/basic_query.py @@ -174,7 +174,7 @@ class BaseTest(unittest.TestCase): # synchronous query for all objects by id # verify known object ids are returned self.notifier = _testNotifier() - self.console = qmf.qmfConsole.Console(notifier=self.notifier, + self.console = qmf2.console.Console(notifier=self.notifier, agent_timeout=3) self.conn = qpid.messaging.Connection(self.broker.host, self.broker.port, @@ -206,7 +206,7 @@ class BaseTest(unittest.TestCase): # synchronous query for each objects # verify objects and schemas are correct self.notifier = _testNotifier() - self.console = qmf.qmfConsole.Console(notifier=self.notifier, + self.console = qmf2.console.Console(notifier=self.notifier, agent_timeout=3) self.conn = qpid.messaging.Connection(self.broker.host, self.broker.port, @@ -248,7 +248,7 @@ class BaseTest(unittest.TestCase): # find agents # synchronous query all package names self.notifier = _testNotifier() - self.console = qmf.qmfConsole.Console(notifier=self.notifier, + self.console = qmf2.console.Console(notifier=self.notifier, agent_timeout=3) self.conn = qpid.messaging.Connection(self.broker.host, self.broker.port, @@ -276,7 +276,7 @@ class BaseTest(unittest.TestCase): # find agents # synchronous query for all schema by package name self.notifier = _testNotifier() - self.console = qmf.qmfConsole.Console(notifier=self.notifier, + self.console = qmf2.console.Console(notifier=self.notifier, agent_timeout=3) self.conn = qpid.messaging.Connection(self.broker.host, self.broker.port, @@ -310,7 +310,7 @@ class BaseTest(unittest.TestCase): # find agents # synchronous query for all schema by package name self.notifier = _testNotifier() - self.console = qmf.qmfConsole.Console(notifier=self.notifier, + self.console = qmf2.console.Console(notifier=self.notifier, agent_timeout=3) self.conn = qpid.messaging.Connection(self.broker.host, self.broker.port, |