summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-03-19 15:37:49 +0000
committerAlan Conway <aconway@apache.org>2007-03-19 15:37:49 +0000
commit7c3c7a5c6ffcf9cbf67a4d93bcd267b0f2d1d7c5 (patch)
tree04acfc8addef95b12718e7d877b261544359a327 /python
parent0bfe742e641214b72136fd6ebe38f03fc8ce03fe (diff)
downloadqpid-python-7c3c7a5c6ffcf9cbf67a4d93bcd267b0f2d1d7c5.tar.gz
Merged revisions 501025 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9 ........ r501025 | gsim | 2007-01-29 07:26:19 -0500 (Mon, 29 Jan 2007) | 3 lines Pass in application headers directly ........ git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@519974 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python')
-rw-r--r--python/tests/testlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/testlib.py b/python/tests/testlib.py
index d9391fc529..f345fbbd80 100644
--- a/python/tests/testlib.py
+++ b/python/tests/testlib.py
@@ -57,7 +57,7 @@ class TestBaseTest(TestBase):
def testMessageProperties(self):
"""Verify properties are passed with message"""
- props={"headers":{"x":1, "y":2}}
+ props={"x":1, "y":2}
self.queue_declare(queue="q")
q = self.consume("q")
self.assertPublishGet(q, routing_key="q", properties=props)