1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

aiohttp: Fix tests

This commit is contained in:
Paulo Romeira
2020-06-09 09:40:12 -03:00
committed by Kevin McCarthy
parent be53091ae5
commit 69cecdbda7

View File

@@ -180,9 +180,8 @@ def test_params_same_url_distinct_params(tmpdir, scheme):
other_params = {"other": "params"}
with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette:
response, cassette_response_text = get(url, output="text", params=other_params)
assert "No match for the request" in cassette_response_text
assert response.status == 599
with pytest.raises(vcr.errors.CannotOverwriteExistingCassetteException):
get(url, output="text", params=other_params)
def test_params_on_url(tmpdir, scheme):