mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Remove match_querystring in responses
Quoth the responses documentation: > querystring is matched by default Not sure how recent this is, unfortunately---but probably 0.17.0, since that's the version where `match_querystring` was deprecated.
This commit is contained in:
parent
63b7595bd4
commit
8c84bae689
1 changed files with 1 additions and 2 deletions
|
|
@ -336,8 +336,7 @@ class AAOTest(UseThePlugin):
|
|||
super().run(*args, **kwargs)
|
||||
|
||||
def mock_response(self, url, body):
|
||||
responses.add(responses.GET, url, body=body, content_type='text/html',
|
||||
match_querystring=True)
|
||||
responses.add(responses.GET, url, body=body, content_type='text/html')
|
||||
|
||||
def test_aao_scraper_finds_image(self):
|
||||
body = """
|
||||
|
|
|
|||
Loading…
Reference in a new issue