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

fix tests in stubs, requests ssl verification and httpbin+flask

This commit is contained in:
bogdan barna
2016-06-24 11:43:01 +03:00
parent 5a848d277e
commit 5c9b0b4ccb
3 changed files with 6 additions and 2 deletions

View File

@@ -66,7 +66,9 @@ def test_original_decoded_response_is_not_modified(tmpdir, httpbin):
assert 'gzip' == inside.headers['content-encoding']
# They should effectively be the same response.
assert inside.headers.items() == outside.getheaders()
inside_headers = (h for h in inside.headers.items() if h[0] != 'Date')
outside_headers = (h for h in outside.getheaders() if h[0] != 'Date')
assert set(inside_headers) == set(outside_headers)
assert inside.read() == outside.read()
# Even though the above are raw bytes, the JSON data should have been