From 1738a0b0951d6b2dea907ab536ed88c26c4be5ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 6 Jan 2015 19:46:51 +0100 Subject: [PATCH] tests: test a false attribute in saml metadata --- tests/test_saml2utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_saml2utils.py b/tests/test_saml2utils.py index ee1795b18..1ffe284c1 100644 --- a/tests/test_saml2utils.py +++ b/tests/test_saml2utils.py @@ -21,7 +21,8 @@ def test_metadata_generation(): config={ 'organization_name': 'foobar', 'saml2_base_url': 'saml2_base_url', - 'saml2_base_soap_url': 'saml2_base_soap_url'}, + 'saml2_base_soap_url': 'saml2_base_soap_url', + 'authn-request-signed': False}, provider_id='provider_id_1') assert meta != None content = meta.get_saml2_metadata(pkey, '', True, True)