summaryrefslogtreecommitdiff
path: root/cpp/src/tests
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2013-08-09 10:50:29 +0000
committerGordon Sim <gsim@apache.org>2013-08-09 10:50:29 +0000
commit218d860ad96b274d237fde984061b455c0ce90d8 (patch)
tree4afedc531d425e85816554050a34fe279ecf8554 /cpp/src/tests
parent2db23c3b2f217524bde25b3daa905ee93affc299 (diff)
downloadqpid-python-218d860ad96b274d237fde984061b455c0ce90d8.tar.gz
QPID-5060: remove exchange and durable for properties map, as they apply to topic itself rather than queue and are tracked by explicit properties
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1512245 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests')
-rwxr-xr-xcpp/src/tests/qpidt2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/qpidt b/cpp/src/tests/qpidt
index 5bdfb6eefd..92df9efc8d 100755
--- a/cpp/src/tests/qpidt
+++ b/cpp/src/tests/qpidt
@@ -117,7 +117,7 @@ class Manager:
if k == "name":
name = v
elif v:
- if isinstance(v, dict) and v["_object_name"]:
+ if isinstance(v, dict) and "_object_name" in v:
v = v["_object_name"]
details += "%s=%s " %(k,v)
print "%-25s %s" % (name, details)