summaryrefslogtreecommitdiff
path: root/qpid/python/tests/basic.py
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2006-09-22 07:43:22 +0000
committerGordon Sim <gsim@apache.org>2006-09-22 07:43:22 +0000
commit69717c3785632ae8c1f85a5e8ee07def87be2ef6 (patch)
tree3a81d813a5e8219fa89c5a52992e692bd463f327 /qpid/python/tests/basic.py
parent35244d13859c33821977ae7e407439c7e00add45 (diff)
downloadqpid-python-69717c3785632ae8c1f85a5e8ee07def87be2ef6.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@448851 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests/basic.py')
-rw-r--r--qpid/python/tests/basic.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/tests/basic.py b/qpid/python/tests/basic.py
index b912fc40be..c3a2414eac 100644
--- a/qpid/python/tests/basic.py
+++ b/qpid/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")