[Test] Rename outdated sample files

This commit is contained in:
Eugenio Lacuesta 2019-11-20 09:38:54 -03:00
parent e6c5292a7c
commit b602c61e1c
No known key found for this signature in database
GPG Key ID: DA3EF2D0913E9810
3 changed files with 2 additions and 2 deletions

View File

@ -250,12 +250,12 @@ class BaseResponseTest(unittest.TestCase):
yield req
def _links_response(self):
body = get_testdata('link_extractor', 'sgml_linkextractor.html')
body = get_testdata('link_extractor', 'linkextractor.html')
resp = self.response_class('http://example.com/index', body=body)
return resp
def _links_response_no_href(self):
body = get_testdata('link_extractor', 'sgml_linkextractor_no_href.html')
body = get_testdata('link_extractor', 'linkextractor_no_href.html')
resp = self.response_class('http://example.com/index', body=body)
return resp