diff options
author | Gordon Sim <gsim@apache.org> | 2006-09-22 07:43:22 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2006-09-22 07:43:22 +0000 |
commit | 6225325010374b21f589e4daba8ddd48564786fa (patch) | |
tree | 38165ec445f0d6058039c5f227d43242c55cfe3e /python/tests/basic.py | |
parent | 474ed3cf1e125360d26dad4376e106e8b48541ac (diff) | |
download | qpid-python-6225325010374b21f589e4daba8ddd48564786fa.tar.gz |
Updated test for fix in broker to use un-named exchange as the default (rather than amq.direct)
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@448851 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests/basic.py')
-rw-r--r-- | python/tests/basic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/basic.py b/python/tests/basic.py index b912fc40be..c3a2414eac 100644 --- a/python/tests/basic.py +++ b/python/tests/basic.py @@ -34,8 +34,8 @@ class BasicTests(TestBase): channel.basic_consume(consumer_tag="local_excluded", queue="test-queue-1b", no_local=True) #send a message - channel.basic_publish(exchange="amq.direct", routing_key="test-queue-1a", content=Content("consume_no_local")) - channel.basic_publish(exchange="amq.direct", routing_key="test-queue-1b", content=Content("consume_no_local")) + channel.basic_publish(routing_key="test-queue-1a", content=Content("consume_no_local")) + channel.basic_publish(routing_key="test-queue-1b", content=Content("consume_no_local")) #check the queues of the two consumers excluded = self.client.queue("local_excluded") |