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

Fix flake8 issue

This commit is contained in:
Nick DiRienzo
2016-06-21 06:54:05 -07:00
parent c3298c25a3
commit 787c6bdb77

View File

@@ -68,7 +68,7 @@ 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) as cass: with vcr.use_cassette(testfile):
inside2 = urlopen(request) inside2 = urlopen(request)
assert 'content-encoding' not in inside2.headers assert 'content-encoding' not in inside2.headers
assert_is_json(inside2.read()) assert_is_json(inside2.read())