summaryrefslogtreecommitdiffstats
path: root/python/tests
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests')
-rw-r--r--python/tests/errorchecking_tests.py4
1 files changed, 2 insertions, 2 deletions
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')