Author: gsim
Date: Mon Jan 29 04:26:19 2007
New Revision: 501025
URL: http://svn.apache.org/viewvc?view=rev&rev=501025
Log:
Pass in application headers directly
Modified:
incubator/qpid/branches/qpid.0-9/python/tests/testlib.py
Modified: incubator/qpid/branches/qpid.0-9/python/tests/testlib.py
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/python/tests/testlib.py?view=diff&rev=501025&r1=501024&r2=501025
==============================================================================
--- incubator/qpid/branches/qpid.0-9/python/tests/testlib.py (original)
+++ incubator/qpid/branches/qpid.0-9/python/tests/testlib.py Mon Jan 29
04:26:19 2007
@@ -57,7 +57,7 @@
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)