From f0ba268d4e49206bb94b76154309bc3a4e091e8d Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Fri, 9 Feb 2007 14:04:16 +0000 Subject: Fix for topic tests. Content fields must be explicitly filled at present. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@505300 13f79535-47bb-0310-9956-ffa450edef68 --- python/tests/exchange.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'python') diff --git a/python/tests/exchange.py b/python/tests/exchange.py index 54c462de24..3a47ffff8c 100644 --- a/python/tests/exchange.py +++ b/python/tests/exchange.py @@ -61,10 +61,10 @@ class StandardExchangeVerifier: self.assertPublishGet(q, ex, "a.x.b.x") self.assertPublishGet(q, ex, "a.x.x.b.x") # Shouldn't match - self.channel.message_transfer(destination=ex, routing_key="a.b") - self.channel.message_transfer(destination=ex, routing_key="a.b.x.y") - self.channel.message_transfer(destination=ex, routing_key="x.a.b.x") - self.channel.message_transfer(destination=ex, routing_key="a.b") + self.channel.message_transfer(destination=ex, routing_key="a.b", body="") + self.channel.message_transfer(destination=ex, routing_key="a.b.x.y", body="") + self.channel.message_transfer(destination=ex, routing_key="x.a.b.x", body="") + self.channel.message_transfer(destination=ex, routing_key="a.b", body="") self.assert_(q.empty()) def verifyHeadersExchange(self, ex): -- cgit v1.2.1