diff options
author | Alan Conway <aconway@apache.org> | 2007-11-09 23:32:10 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-11-09 23:32:10 +0000 |
commit | 20e71deb3cfbeda6962a5e6411bfce11ba65aacf (patch) | |
tree | 6246d7f65acdb5ab99542e44fd65d9daa753c57a | |
parent | e95499012b4663fdaa41a5b875be75492c1c8fb0 (diff) | |
download | qpid-python-20e71deb3cfbeda6962a5e6411bfce11ba65aacf.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/qpid@593693 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | python/tests_0-10/execution.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests_0-10/execution.py b/python/tests_0-10/execution.py index 950ff59d97..3ff6d8ea65 100644 --- a/python/tests_0-10/execution.py +++ b/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)) |