diff options
| author | Gordon Sim <gsim@apache.org> | 2007-02-09 14:04:16 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-02-09 14:04:16 +0000 |
| commit | f0ba268d4e49206bb94b76154309bc3a4e091e8d (patch) | |
| tree | 5ea680fa95446399352481d0ae8faf0b8f22d726 /python/tests | |
| parent | 30279598631d3a225e895b6ccbc1befff88b55f8 (diff) | |
| download | qpid-python-f0ba268d4e49206bb94b76154309bc3a4e091e8d.tar.gz | |
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
Diffstat (limited to 'python/tests')
| -rw-r--r-- | python/tests/exchange.py | 8 |
1 files changed, 4 insertions, 4 deletions
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): |
