You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2007/03/19 16:37:50 UTC

svn commit: r519974 - in /incubator/qpid/trunk/qpid: ./ python/tests/testlib.py

Author: aconway
Date: Mon Mar 19 08:37:49 2007
New Revision: 519974

URL: http://svn.apache.org/viewvc?view=rev&rev=519974
Log:
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
........

Modified:
    incubator/qpid/trunk/qpid/   (props changed)
    incubator/qpid/trunk/qpid/python/tests/testlib.py

Propchange: incubator/qpid/trunk/qpid/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Mon Mar 19 08:37:49 2007
@@ -1 +1 @@
-/incubator/qpid/branches/M2:0-519912,519933 /incubator/qpid/branches/qpid.0-9:1-492620,496593,497277,500305,501022
+/incubator/qpid/branches/M2:0-519912,519933 /incubator/qpid/branches/qpid.0-9:1-492620,496593,497277,500305,501022,501025

Modified: incubator/qpid/trunk/qpid/python/tests/testlib.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/tests/testlib.py?view=diff&rev=519974&r1=519973&r2=519974
==============================================================================
--- incubator/qpid/trunk/qpid/python/tests/testlib.py (original)
+++ incubator/qpid/trunk/qpid/python/tests/testlib.py Mon Mar 19 08:37:49 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)