summaryrefslogtreecommitdiff
path: root/python/tests_0-10
diff options
context:
space:
mode:
authorNuno Santos <nsantos@apache.org>2008-05-13 20:36:23 +0000
committerNuno Santos <nsantos@apache.org>2008-05-13 20:36:23 +0000
commit715b3ab46cf6f0f8b3e16c492c62e0af418e11f4 (patch)
treec88b45b3adc8e31a594a5cf6209820f25cba828e /python/tests_0-10
parenta541665a2ea11635c16b06c6730aafc70d3ddae4 (diff)
downloadqpid-python-715b3ab46cf6f0f8b3e16c492c62e0af418e11f4.tar.gz
continuation of QPID-1052
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@656004 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests_0-10')
-rw-r--r--python/tests_0-10/management.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests_0-10/management.py b/python/tests_0-10/management.py
index 3ca7284d2a..f1360a1902 100644
--- a/python/tests_0-10/management.py
+++ b/python/tests_0-10/management.py
@@ -73,7 +73,7 @@ class ManagementTest (TestBase010):
brokerSessions = mc.syncGetObjects (mch, "session")
found = False
for bs in brokerSessions:
- if bs.name == info[1]:
+ if bs.name == info.sessionId:
found = True
self.assertEqual (found, True)
mc.removeChannel (mch)