summaryrefslogtreecommitdiff
path: root/tests/test_68_assertion_id.py
diff options
context:
space:
mode:
authorRoland Hedberg <roland@catalogix.se>2017-10-11 08:38:52 +0200
committerGitHub <noreply@github.com>2017-10-11 08:38:52 +0200
commit46d24f6af561d75d455f7b73e5a3d19837d32d2f (patch)
treec1e415295c5d09c8f4df58fc25d63cb8005b11e6 /tests/test_68_assertion_id.py
parentd8eef64ebe54989f577a1e48eb78787b0dd8db41 (diff)
parent61fa999aba7d9b02a15c9792e843aa55b1b1956b (diff)
downloadpysaml2-46d24f6af561d75d455f7b73e5a3d19837d32d2f.tar.gz
Merge pull request #439 from jkakavas/fix_sane_defaults
Ensure signature checking for SAML Responses is enabled by default
Diffstat (limited to 'tests/test_68_assertion_id.py')
-rw-r--r--tests/test_68_assertion_id.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_68_assertion_id.py b/tests/test_68_assertion_id.py
index 283b4da6..31b7e8e0 100644
--- a/tests/test_68_assertion_id.py
+++ b/tests/test_68_assertion_id.py
@@ -78,7 +78,8 @@ def test_basic_flow():
# --------- @SP -------------
xmlstr = get_msg(hinfo, binding)
-
+ # Explicitly allow unsigned responses for this test
+ sp.want_response_signed = False
aresp = sp.parse_authn_request_response(xmlstr, binding,
{resp.in_response_to: "/"})