summaryrefslogtreecommitdiff
path: root/tests/test_60_sp.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_60_sp.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_60_sp.py')
-rw-r--r--tests/test_60_sp.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_60_sp.py b/tests/test_60_sp.py
index 65504635..78e88400 100644
--- a/tests/test_60_sp.py
+++ b/tests/test_60_sp.py
@@ -53,6 +53,8 @@ AUTHN = {
class TestSP():
def setup_class(self):
self.sp = make_plugin("rem", saml_conf="server_conf")
+ # Explicitly allow unsigned responses for this test
+ self.sp.saml_client.want_response_signed = False
self.server = Server(config_file="idp_conf")
def teardown_class(self):