mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +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)
|
super().run(*args, **kwargs)
|
||||||
|
|
||||||
def mock_response(self, url, body):
|
def mock_response(self, url, body):
|
||||||
responses.add(responses.GET, url, body=body, content_type='text/html',
|
responses.add(responses.GET, url, body=body, content_type='text/html')
|
||||||
match_querystring=True)
|
|
||||||
|
|
||||||
def test_aao_scraper_finds_image(self):
|
def test_aao_scraper_finds_image(self):
|
||||||
body = """
|
body = """
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue