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

Renamed inside2 to inside

This commit is contained in:
Nick DiRienzo
2016-06-21 07:00:53 -07:00
parent 787c6bdb77
commit 9a8067d8e7

View File

@@ -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
# decoded and saved to the cassette.
with vcr.use_cassette(testfile):
inside2 = urlopen(request)
assert 'content-encoding' not in inside2.headers
assert_is_json(inside2.read())
inside = urlopen(request)
assert 'content-encoding' not in inside.headers
assert_is_json(inside.read())