diff options
author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-09 10:58:28 +0000 |
---|---|---|
committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-09 10:58:28 +0000 |
commit | c3493ceff8d104042464dda61fcdf8886ee3f448 (patch) | |
tree | 2abf29a405af878db327f35a46f976b602d587a3 /python/tests/errorchecking_tests.py | |
parent | f8545308ffb31de6227b7cf10cf1a07dd0d21f22 (diff) | |
download | lasso-c3493ceff8d104042464dda61fcdf8886ee3f448.tar.gz lasso-c3493ceff8d104042464dda61fcdf8886ee3f448.tar.xz lasso-c3493ceff8d104042464dda61fcdf8886ee3f448.zip |
'Class methods' Login.new() & Logout.new() should be used
instead of Login() & Logout() constructors
Diffstat (limited to 'python/tests/errorchecking_tests.py')
-rw-r--r-- | python/tests/errorchecking_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
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') |