Skip to content

Commit

Permalink
Remove print from test
Browse files Browse the repository at this point in the history
  • Loading branch information
pitbulk committed Oct 6, 2023
1 parent feb0d1d commit 6e67a9c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/src/OneLogin/saml2_tests/response_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ def testGetXMLDocument(self):
xml = self.file_contents(join(self.data_path, 'responses', 'signed_message_response.xml.base64'))
response = OneLogin_Saml2_Response(settings, xml)
pretty_xml = self.file_contents(join(self.data_path, 'responses', 'pretty_signed_message_response.xml'))
print(etree.tostring(response.get_xml_document(), encoding='unicode', pretty_print=True))
self.assertEqual(etree.tostring(response.get_xml_document(), encoding='unicode', pretty_print=True), pretty_xml)

xml_2 = self.file_contents(join(self.data_path, 'responses', 'valid_encrypted_assertion.xml.base64'))
Expand Down

0 comments on commit 6e67a9c

Please sign in to comment.