summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2004-08-09 11:35:29 +0000
committerFrederic Peters <fpeters@entrouvert.com>2004-08-09 11:35:29 +0000
commit41188a45b671b51db5f30f5524b9463b5421a6e1 (patch)
tree1ec155d1261c7c63825ee26763de07e60dea1af5 /python
parentc3493ceff8d104042464dda61fcdf8886ee3f448 (diff)
downloadlasso-41188a45b671b51db5f30f5524b9463b5421a6e1.tar.gz
lasso-41188a45b671b51db5f30f5524b9463b5421a6e1.tar.xz
lasso-41188a45b671b51db5f30f5524b9463b5421a6e1.zip
the point is to fix lasso not to segfault; not to fix tests to make lasso
happy.
Diffstat (limited to 'python')
-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')