Skip to content

Commit 24a8f09

Browse files
committed
Fix tests
1 parent 07d4730 commit 24a8f09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/src/OneLogin/saml2_tests/idp_metadata_parser_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def test_parse_with_entity_id(self):
293293

294294
expected_settings_json = """
295295
{
296-
"security": {"authnRequestsSigned": "true"},
296+
"security": {"authnRequestsSigned": true},
297297
"sp": {
298298
"NameIDFormat": "urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified"
299299
},
@@ -320,7 +320,7 @@ def test_parse_with_entity_id(self):
320320

321321
expected_settings_json2 = """
322322
{
323-
"security": {"authnRequestsSigned": "false"},
323+
"security": {"authnRequestsSigned": false},
324324
"sp": {
325325
"NameIDFormat": "urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified"
326326
},

0 commit comments

Comments
 (0)