Author: aconway
Date: Fri Nov 9 15:32:10 2007
New Revision: 593693
URL: http://svn.apache.org/viewvc?rev=593693&view=rev
Log:
Get rid of basic_publish, no longer supported by c++ broker.
Modified:
incubator/qpid/trunk/qpid/python/tests_0-10/execution.py
Modified: incubator/qpid/trunk/qpid/python/tests_0-10/execution.py
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/tests_0-10/execution.py?rev=593693&r1=593692&r2=593693&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/tests_0-10/execution.py (original)
+++ incubator/qpid/trunk/qpid/python/tests_0-10/execution.py Fri Nov 9
15:32:10 2007
@@ -24,6 +24,6 @@
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))