From 41188a45b671b51db5f30f5524b9463b5421a6e1 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Mon, 9 Aug 2004 11:35:29 +0000 Subject: the point is to fix lasso not to segfault; not to fix tests to make lasso happy. --- python/tests/errorchecking_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/tests/errorchecking_tests.py') diff --git a/python/tests/errorchecking_tests.py b/python/tests/errorchecking_tests.py index 83d44046..87d689e6 100644 --- a/python/tests/errorchecking_tests.py +++ b/python/tests/errorchecking_tests.py @@ -37,10 +37,10 @@ import lasso class ErrorCheckingTestCase(unittest.TestCase): def test01(self): - lasso.Login.new(None).msg_url + lasso.Login(None).msg_url def test02(self): - lasso.Logout.new(None, lasso.providerTypeSp).msg_url + lasso.Logout(None, lasso.providerTypeSp).msg_url suite1 = unittest.makeSuite(ErrorCheckingTestCase, 'test') -- cgit