summaryrefslogtreecommitdiff
path: root/python/tests/testlib.py
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-03-16 22:54:11 +0000
committerAlan Conway <aconway@apache.org>2007-03-16 22:54:11 +0000
commit15256f1f40f96392028f6182cecf29ff334dbe72 (patch)
tree3c443c2444ee44d42132bbf164d5ee2746beeda8 /python/tests/testlib.py
parent70e06534778acde7faae8298775857e5a0c56b5a (diff)
downloadqpid-python-15256f1f40f96392028f6182cecf29ff334dbe72.tar.gz
Merged revisions 500305 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9 ........ r500305 | gsim | 2007-01-26 13:51:21 -0500 (Fri, 26 Jan 2007) | 3 lines Updates to use message class in place of basic. ........ git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@519171 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests/testlib.py')
-rw-r--r--python/tests/testlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/testlib.py b/python/tests/testlib.py
index cab07cc4ac..d9391fc529 100644
--- a/python/tests/testlib.py
+++ b/python/tests/testlib.py
@@ -49,7 +49,7 @@ class TestBaseTest(TestBase):
def testAssertEmptyFail(self):
self.queue_declare(queue="full")
q = self.consume("full")
- self.channel.basic_publish(routing_key="full")
+ self.channel.message_transfer(routing_key="full", body="")
try:
self.assertEmpty(q);
self.fail("assertEmpty did not assert on non-empty queue")