summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/tests_0-10/execution.py4
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))