summaryrefslogtreecommitdiff
path: root/qpid/python/tests_0-10/message.py
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-09-21 15:13:52 +0000
committerGordon Sim <gsim@apache.org>2007-09-21 15:13:52 +0000
commitfd4e234dea02bdef1c4db2bea061360de015c8f5 (patch)
tree9f2530766490d445c2cea764d2776c7a7816e2bb /qpid/python/tests_0-10/message.py
parentac502eb4336c57f5f1bf102f2d58f003d71dc82e (diff)
downloadqpid-python-fd4e234dea02bdef1c4db2bea061360de015c8f5.tar.gz
Moved c++ over to using the same preview file for 0-10 work as java.
Removed all channel class related code from broker as a result. Did the same for some python tests I missed earlier. Renamed ChannelAdapter to ChannelHandler. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@578167 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests_0-10/message.py')
-rw-r--r--qpid/python/tests_0-10/message.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/tests_0-10/message.py b/qpid/python/tests_0-10/message.py
index ba26dda309..b5b058340f 100644
--- a/qpid/python/tests_0-10/message.py
+++ b/qpid/python/tests_0-10/message.py
@@ -70,7 +70,7 @@ class MessageTests(TestBase):
#open new channel and cleanup last consumer:
channel = self.client.channel(2)
- channel.channel_open()
+ channel.session_open()
#check that an exclusive consumer cannot be created if a consumer already exists:
self.subscribe(channel, destination="first", queue="test-queue-2")
@@ -93,7 +93,7 @@ class MessageTests(TestBase):
self.assertChannelException(404, e.args[0])
channel = self.client.channel(2)
- channel.channel_open()
+ channel.session_open()
try:
#queue not specified and none previously declared for channel:
self.subscribe(channel, queue="", destination="")