summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2005-02-04 14:25:35 +0000
committerFrederic Peters <fpeters@entrouvert.com>2005-02-04 14:25:35 +0000
commit4ba482fbdbf85921a3b8b8f1a958d7df5db15e33 (patch)
tree0504ba0f3ba422f98f481cb490ddd3248821a02c /python
parent92cfcd8b00be1efc29bdc9ae158af937613ab1ae (diff)
downloadlasso-4ba482fbdbf85921a3b8b8f1a958d7df5db15e33.tar.gz
lasso-4ba482fbdbf85921a3b8b8f1a958d7df5db15e33.tar.xz
lasso-4ba482fbdbf85921a3b8b8f1a958d7df5db15e33.zip
all query fields are restored to the same lib:Extension; there are no other
way.
Diffstat (limited to 'python')
-rwxr-xr-xpython/tests/profiles_tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/tests/profiles_tests.py b/python/tests/profiles_tests.py
index b79de6ea..277819b0 100755
--- a/python/tests/profiles_tests.py
+++ b/python/tests/profiles_tests.py
@@ -199,10 +199,10 @@ class LoginTestCase(unittest.TestCase):
idpLogin.processAuthnRequestMsg(authnRequestQuery)
self.failUnless(idpLogin.request.extension)
extensionsList = idpLogin.request.extension
- self.failUnlessEqual(len(extensionsList), 2)
+ self.failUnlessEqual(len(extensionsList), 1)
self.failUnless('<action>do</action>' in extensionsList[0])
- self.failUnless('<action2>do action 2</action2>' in extensionsList[1])
- self.failUnless('<action3>do action 3</action3>' in extensionsList[1])
+ self.failUnless('<action2>do action 2</action2>' in extensionsList[0])
+ self.failUnless('<action3>do action 3</action3>' in extensionsList[0])
class LogoutTestCase(unittest.TestCase):