From 87a25e9ab0e607fb532af8db94b3ba78cd3e46a1 Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Tue, 24 Feb 2015 00:09:44 -0800 Subject: [PATCH] Fix httplib2 integration test. --- tests/integration/test_httplib2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_httplib2.py b/tests/integration/test_httplib2.py index fff7e7e..5f1a8df 100644 --- a/tests/integration/test_httplib2.py +++ b/tests/integration/test_httplib2.py @@ -54,7 +54,7 @@ def test_response_headers(scheme, tmpdir): with vcr.use_cassette(str(tmpdir.join('headers.yaml'))) as cass: resp, _ = httplib2.Http().request(url) - assert headers == resp.items() + assert set(headers) == set(resp.items()) def test_multiple_requests(scheme, tmpdir):