mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 09:13:23 +00:00
Renamed inside2 to inside
This commit is contained in:
@@ -69,6 +69,6 @@ def test_original_decoded_response_is_not_modified(tmpdir, httpbin):
|
|||||||
# Even though the above are raw bytes, the JSON data should have been
|
# Even though the above are raw bytes, the JSON data should have been
|
||||||
# decoded and saved to the cassette.
|
# decoded and saved to the cassette.
|
||||||
with vcr.use_cassette(testfile):
|
with vcr.use_cassette(testfile):
|
||||||
inside2 = urlopen(request)
|
inside = urlopen(request)
|
||||||
assert 'content-encoding' not in inside2.headers
|
assert 'content-encoding' not in inside.headers
|
||||||
assert_is_json(inside2.read())
|
assert_is_json(inside.read())
|
||||||
|
|||||||
Reference in New Issue
Block a user