1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

Fix failing tests

This commit is contained in:
Samuel Fekete
2017-07-03 15:16:23 +01:00
committed by Samuel Fekete
parent fc95e34bd4
commit 365a98bf66
2 changed files with 2 additions and 2 deletions

View File

@@ -37,6 +37,6 @@ def proxy_server(httpbin):
def test_use_proxy(tmpdir, httpbin, proxy_server):
'''Ensure that it works with a proxy.'''
with vcr.use_cassette(str(tmpdir.join('proxy.yaml'))) as cass:
with vcr.use_cassette(str(tmpdir.join('proxy.yaml'))):
requests.get(httpbin.url, proxies={'http': proxy_server})
requests.get(httpbin.url, proxies={'http': proxy_server})