From 9a8067d8e7ad5e9a3e852c65a569f16335a2c80f Mon Sep 17 00:00:00 2001 From: Nick DiRienzo Date: Tue, 21 Jun 2016 07:00:53 -0700 Subject: [PATCH] Renamed inside2 to inside --- tests/integration/test_stubs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/test_stubs.py b/tests/integration/test_stubs.py index b72aa63..b4cdd53 100644 --- a/tests/integration/test_stubs.py +++ b/tests/integration/test_stubs.py @@ -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())