summaryrefslogtreecommitdiff
path: root/python/tests/connection010.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2008-03-10 19:12:09 +0000
committerRafael H. Schloming <rhs@apache.org>2008-03-10 19:12:09 +0000
commit713c0c114f8d344beb58d5f99d0cb602485399cf (patch)
treeda91f2d82f9bce5f5939d18db3526851ffd2ff95 /python/tests/connection010.py
parentaeb6df01fad88c3202c9e30205ec60801d672d9c (diff)
downloadqpid-python-713c0c114f8d344beb58d5f99d0cb602485399cf.tar.gz
renamed datatypes.Struct.type -> datatypes.Struct._type; this avoids naming conflicts with metadata-driven fields; moved argument validation -> datatypes.Struct and improved error checking; improved datatypes.Struct.__repr__
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@635660 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests/connection010.py')
-rw-r--r--python/tests/connection010.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/connection010.py b/python/tests/connection010.py
index e966ede377..a953e034a2 100644
--- a/python/tests/connection010.py
+++ b/python/tests/connection010.py
@@ -49,7 +49,7 @@ class TestSession(Delegate):
self.queue = queue
def queue_query(self, qq):
- return qq.type.result.type.new((qq.queue,), {})
+ return qq._type.result.type.new((qq.queue,), {})
def message_transfer(self, cmd, header, body):
self.queue.put((cmd, header, body))