summaryrefslogtreecommitdiffstats
path: root/python/tests/profiles_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/profiles_tests.py')
-rwxr-xr-xpython/tests/profiles_tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/tests/profiles_tests.py b/python/tests/profiles_tests.py
index 1816fe4f..6dcc4af6 100755
--- a/python/tests/profiles_tests.py
+++ b/python/tests/profiles_tests.py
@@ -89,8 +89,9 @@ class LoginTestCase(unittest.TestCase):
os.path.join(dataDir, 'idp1-la/certificate.pem'))
login = lasso.Login(lassoServer)
login.initAuthnRequest()
- login.authnRequest
- login.authnRequest.protocolProfile = lasso.libProtocolProfileBrwsArt
+ login.request
+ login.request.protocolProfile = lasso.libProtocolProfileBrwsArt
+ self.failUnlessEqual(login.request.protocolProfile, lasso.libProtocolProfileBrwsArt)
class LogoutTestCase(unittest.TestCase):