summaryrefslogtreecommitdiff
path: root/qpid/python
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-11-09 23:32:10 +0000
committerAlan Conway <aconway@apache.org>2007-11-09 23:32:10 +0000
commit4e8a91d7704fe666f61ff2c216157d1828de4ed8 (patch)
tree246b090d2fd1e24c093bdccf87e53f0316f3b8ea /qpid/python
parent48c509cc0e1461fdfb175b3b0a7733a3f991faaf (diff)
downloadqpid-python-4e8a91d7704fe666f61ff2c216157d1828de4ed8.tar.gz
Get rid of basic_publish, no longer supported by c++ broker.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@593693 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
-rw-r--r--qpid/python/tests_0-10/execution.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/tests_0-10/execution.py b/qpid/python/tests_0-10/execution.py
index 950ff59d97..3ff6d8ea65 100644
--- a/qpid/python/tests_0-10/execution.py
+++ b/qpid/python/tests_0-10/execution.py
@@ -24,6 +24,6 @@ class ExecutionTests (TestBase):
def test_flush(self):
channel = self.channel
for i in [1, 2, 3]:
- channel.basic_publish(routing_key=str(i))
- #channel.execution_flush()
+ channel.message_transfer(
+ content=Content(properties={'routing_key':str(i)}))
assert(channel.completion.wait(channel.completion.command_id, timeout=1))