1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

missed a httpbin call

This commit is contained in:
Kevin McCarthy
2016-05-01 17:15:54 -10:00
parent e269c77670
commit 34d07406f9

View File

@@ -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.