From 34d07406f98f60e7e9f46f11452b36f95d8fc31c Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sun, 1 May 2016 17:15:54 -1000 Subject: [PATCH] missed a httpbin call --- tests/integration/test_record_mode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_record_mode.py b/tests/integration/test_record_mode.py index f697bcc..e4ab4c3 100644 --- a/tests/integration/test_record_mode.py +++ b/tests/integration/test_record_mode.py @@ -105,7 +105,7 @@ def test_all_record_mode(tmpdir, httpbin): with vcr.use_cassette(testfile, record_mode="all") as cass: # make the same request again - urlopen('http://httpbin.org/').read() + urlopen(httpbin.url).read() # in the "all" record mode, we can add more requests to # a cassette without repurcussions.