this is apparently needed to run against newer versions of the requests
library
Signed-off-by: Casey Bodley <cbodley@redhat.com>
r = func(url, headers=headers)
eq(r.status_code, expect_status)
- assert r.headers['access-control-allow-origin'] == expect_allow_origin
- assert r.headers['access-control-allow-methods'] == expect_allow_methods
+ assert r.headers.get('access-control-allow-origin', None) == expect_allow_origin
+ assert r.headers.get('access-control-allow-methods', None) == expect_allow_methods