summaryrefslogtreecommitdiff
path: root/python/tests/testlib.py
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-01-29 12:26:19 +0000
committerGordon Sim <gsim@apache.org>2007-01-29 12:26:19 +0000
commitf1aff6512e53443b64d7c4cb877dac6de153afd9 (patch)
tree10b93aedd3bfdc3ba7aced46b671db4d8f7283ac /python/tests/testlib.py
parent0a9aac9472bc97bc42ec1219741a2e8593474677 (diff)
downloadqpid-python-f1aff6512e53443b64d7c4cb877dac6de153afd9.tar.gz
Pass in application headers directly
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@501025 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests/testlib.py')
-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)