diff options
| author | Emmanuel Raviart <eraviart@entrouvert.com> | 2004-08-27 22:32:59 +0000 |
|---|---|---|
| committer | Emmanuel Raviart <eraviart@entrouvert.com> | 2004-08-27 22:32:59 +0000 |
| commit | 8425480fb7bf6906c970a75c13826da480ae46e1 (patch) | |
| tree | cac8afcc8f07c39e276084741e8333052eb0130b /python/tests | |
| parent | 0791ef056f421368f4a8079d17ccf96cbbfbd8d5 (diff) | |
| download | lasso-8425480fb7bf6906c970a75c13826da480ae46e1.tar.gz lasso-8425480fb7bf6906c970a75c13826da480ae46e1.tar.xz lasso-8425480fb7bf6906c970a75c13826da480ae46e1.zip | |
Transformed LassoAuthnRequest as a true SWIG class with attributes and
methods for all bindings.
Diffstat (limited to 'python/tests')
| -rw-r--r-- | python/tests/login_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/login_tests.py b/python/tests/login_tests.py index 614ea4cc..a7ac8cd2 100644 --- a/python/tests/login_tests.py +++ b/python/tests/login_tests.py @@ -60,12 +60,12 @@ class LoginTestCase(unittest.TestCase): login.init_authn_request(lasso.httpMethodRedirect) self.failUnlessEqual(login.request_type, lasso.messageTypeAuthnRequest) login.authn_request - login.authn_request.set_protocolProfile(lasso.libProtocolProfileBrwsArt) + login.authn_request.protocolProfile = lasso.libProtocolProfileBrwsArt class LogoutTestCase(unittest.TestCase): def test01(self): - """SP logout without session and indentity; testing init_request.""" + """SP logout without session and identity; testing init_request.""" lassoServer = lasso.Server( os.path.join(dataDir, 'sp1-la/metadata.xml'), |
