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

DOC(FIX): fixed variable name (a -> cass) in an example for rewind (#492)

This commit is contained in:
Yaroslav Halchenko
2019-12-12 23:16:42 -05:00
committed by Josh Peak
parent 9ec19dd966
commit 531685d50b

View File

@@ -384,5 +384,5 @@ VCR.py allows to rewind a cassette in order to replay it inside the same functio
with vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml') as cass:
response = urllib2.urlopen('http://www.zombo.com/').read()
assert cass.all_played
a.rewind()
cass.rewind()
assert not cass.all_played