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

remove errant print statements

This commit is contained in:
Kevin McCarthy
2013-08-19 19:34:38 -10:00
parent 762b761d0c
commit 3e247a2efb

View File

@@ -5,8 +5,6 @@ def test_recorded_request_url_with_redirected_request(tmpdir):
with vcr.use_cassette(str(tmpdir.join('test.yml'))) as cass:
assert len(cass) == 0
urllib2.urlopen('http://httpbin.org/redirect/3')
print cass.requests
print cass.requests[0]
assert cass.requests[0].url == 'http://httpbin.org/redirect/3'
assert cass.requests[3].url == 'http://httpbin.org/get'
assert len(cass) == 4