diff --git a/tests/integration/test_requests.py b/tests/integration/test_requests.py index 4229a0f..81e78bf 100644 --- a/tests/integration/test_requests.py +++ b/tests/integration/test_requests.py @@ -249,10 +249,8 @@ def test_nested_cassettes_with_session_created_before_nesting(httpbin_both, tmpd def test_post_file(tmpdir, httpbin_both): '''Ensure that we handle posting a file.''' url = httpbin_both + '/post' - with vcr.use_cassette(str(tmpdir.join('post_file.yaml'))) as cass: - # Don't use 2.7+ only style ',' separated with here because we support python 2.6 - with open('tox.ini') as f: - original_response = requests.post(url, f).content + with vcr.use_cassette(str(tmpdir.join('post_file.yaml'))) as cass, open('tox.ini') as f: + original_response = requests.post(url, f).content # This also tests that we do the right thing with matching the body when they are files. with vcr.use_cassette(str(tmpdir.join('post_file.yaml')),