diff options
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 adf2ac78..3e4614df 100644 --- a/python/tests/errorchecking_tests.py +++ b/python/tests/errorchecking_tests.py @@ -36,13 +36,13 @@ import lasso class ErrorCheckingTestCase(unittest.TestCase): - def DISABLEDtest01(self): + def test01(self): try: lasso.Login(None).msg_url except: pass - def DISABLEDtest02(self): + def test02(self): # Same as test01; replace Login by Logout try: lasso.Logout(None, lasso.providerTypeSp).msg_url |