From bd2121d34e8e9e856ed910811a225fe5f70a656c Mon Sep 17 00:00:00 2001 From: Max Shytikov Date: Tue, 6 May 2014 00:46:32 +0200 Subject: [PATCH] pep8 --- tests/unit/test_cassettes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/test_cassettes.py b/tests/unit/test_cassettes.py index 20df950..927f480 100644 --- a/tests/unit/test_cassettes.py +++ b/tests/unit/test_cassettes.py @@ -58,10 +58,11 @@ def test_cassette_get_missing_response(): with pytest.raises(UnhandledHTTPRequestError): a.responses_of('foo') + @mock.patch('vcr.cassette.requests_match', _mock_requests_match) def test_cassette_cant_read_same_request_twice(): a = Cassette('test') - a.append('foo','bar') + a.append('foo', 'bar') a.play_response('foo') with pytest.raises(UnhandledHTTPRequestError): a.play_response('foo')