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

headers dont retain order anymore.... sigh

This commit is contained in:
Kevin McCarthy
2014-05-07 18:31:55 -10:00
parent b36a1157e7
commit b671e7ab99

View File

@@ -50,7 +50,7 @@ def test_response_headers(scheme, tmpdir):
with vcr.use_cassette(str(tmpdir.join('headers.yaml'))) as cass:
open2 = urlopen(url).info().items()
assert open1 == open2
assert sorted(open1) == sorted(open2)
def test_multiple_requests(scheme, tmpdir):