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

Replaced 'url' mather with 'uri'.

This commit is contained in:
Max Shytikov
2014-04-11 01:32:10 +02:00
parent 7fe55ad8b8
commit 2fa1aaa1f7
6 changed files with 15 additions and 14 deletions

View File

@@ -73,7 +73,7 @@ my_vcr = vcr.VCR(
serializer = 'json',
cassette_library_dir = 'fixtures/cassettes',
record_mode = 'once',
match_on = ['url', 'method'],
match_on = ['uri', 'method'],
)
with my_vcr.use_cassette('test.json'):