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.