From c3493ceff8d104042464dda61fcdf8886ee3f448 Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Mon, 9 Aug 2004 10:58:28 +0000 Subject: 'Class methods' Login.new() & Logout.new() should be used instead of Login() & Logout() constructors --- python/tests/errorchecking_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') diff --git a/python/tests/errorchecking_tests.py b/python/tests/errorchecking_tests.py index 87cb2b1b..83d44046 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(None).msg_url + lasso.Login.new(None).msg_url def test02(self): - lasso.Logout(None).msg_url + lasso.Logout.new(None, lasso.providerTypeSp).msg_url suite1 = unittest.makeSuite(ErrorCheckingTestCase, 'test') -- cgit