Skip to content

Commit

Permalink
fix: SPIDA validator cie_mode - test 72
Browse files Browse the repository at this point in the history
  • Loading branch information
peppelinux committed Feb 21, 2024
1 parent 8e9f449 commit f4c9501
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions example/backends/spidsaml2_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ def validate_issuer(self):
msg.format(self.response.issuer.format, _ERROR_TROUBLESHOOT)
)

# 72
for i in self.response.assertion:
if i.issuer.format != "urn:oasis:names:tc:SAML:2.0:nameid-format:entity":
raise SPIDValidatorException(
msg.format(self.response.issuer.format,
_ERROR_TROUBLESHOOT)
)
# 72
for i in self.response.assertion:
if i.issuer.format != "urn:oasis:names:tc:SAML:2.0:nameid-format:entity":
raise SPIDValidatorException(
msg.format(self.response.issuer.format,
_ERROR_TROUBLESHOOT)
)

def validate_assertion_version(self):
"""spid saml check 35"""
Expand Down

0 comments on commit f4c9501

Please sign in to comment.