summaryrefslogtreecommitdiff
path: root/qpid/python/tests
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
commit5e2835f140a383743259e34aa575bcc0b64c8271 (patch)
tree8a64cebcb0ea76aac1a1902e258a8ed17813e41d /qpid/python/tests
parentdd42e2aaa19b0d0a8dac5b3511dbfa60772ed8de (diff)
downloadqpid-python-5e2835f140a383743259e34aa575bcc0b64c8271.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@519974 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests')
-rw-r--r--qpid/python/tests/testlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/tests/testlib.py b/qpid/python/tests/testlib.py
index d9391fc529..f345fbbd80 100644
--- a/qpid/python/tests/testlib.py
+++ b/qpid/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)