@@ -48,7 +48,7 @@ def testGetMetadata(self):
4848 data = OneLogin_Saml2_IdPMetadataParser .get_metadata ('http://google.es' )
4949
5050 try :
51- data = OneLogin_Saml2_IdPMetadataParser .get_metadata ('https://www .testshib.org/metadata/testshib-providers.xml ' )
51+ data = OneLogin_Saml2_IdPMetadataParser .get_metadata ('https://idp .testshib.org/idp/shibboleth ' )
5252 except URLError :
5353 data = self .file_contents (join (self .data_path , 'metadata' , 'testshib-providers.xml' ))
5454 self .assertTrue (data is not None and data is not {})
@@ -61,7 +61,7 @@ def testParseRemote(self):
6161 data = OneLogin_Saml2_IdPMetadataParser .parse_remote ('http://google.es' )
6262
6363 try :
64- data = OneLogin_Saml2_IdPMetadataParser .parse_remote ('https://www .testshib.org/metadata/testshib-providers.xml ' )
64+ data = OneLogin_Saml2_IdPMetadataParser .parse_remote ('https://idp .testshib.org/idp/shibboleth ' )
6565 except URLError :
6666 xml = self .file_contents (join (self .data_path , 'metadata' , 'testshib-providers.xml' ))
6767 data = OneLogin_Saml2_IdPMetadataParser .parse (xml )
@@ -83,7 +83,6 @@ def testParseRemote(self):
8383 }
8484 """
8585 expected_settings = json .loads (expected_settings_json )
86-
8786 self .assertEqual (expected_settings , data )
8887
8988 def testParse (self ):
@@ -144,7 +143,7 @@ def test_parse_testshib_required_binding_sso_redirect(self):
144143 """
145144 try :
146145 xmldoc = OneLogin_Saml2_IdPMetadataParser .get_metadata (
147- 'https://www .testshib.org/metadata/testshib-providers.xml ' )
146+ 'https://idp .testshib.org/idp/shibboleth ' )
148147 except Exception :
149148 xmldoc = self .file_contents (join (self .data_path , 'metadata' , 'testshib-providers.xml' ))
150149
@@ -181,7 +180,7 @@ def test_parse_testshib_required_binding_sso_post(self):
181180 """
182181 try :
183182 xmldoc = OneLogin_Saml2_IdPMetadataParser .get_metadata (
184- 'https://www .testshib.org/metadata/testshib-providers.xml ' )
183+ 'https://idp .testshib.org/idp/shibboleth ' )
185184 except URLError :
186185 xmldoc = self .file_contents (join (self .data_path , 'metadata' , 'testshib-providers.xml' ))
187186
0 commit comments