From 15256f1f40f96392028f6182cecf29ff334dbe72 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Fri, 16 Mar 2007 22:54:11 +0000 Subject: 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 --- python/tests/testlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/tests/testlib.py') 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") -- cgit v1.2.1