forked from TrueCloudLab/s3-tests
Compare commits
3 commits
master
...
wip-176-17
Author | SHA1 | Date | |
---|---|---|---|
|
785596b9c6 | ||
|
d7504981b8 | ||
|
4b553b448a |
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ bunch >=1.0.0
|
|||
# 0.14 switches to libev, that means bootstrap needs to change too
|
||||
gevent >=1.0
|
||||
isodate >=0.4.4
|
||||
requests ==0.14.0
|
||||
requests >=2.18.1
|
||||
pytz >=2011k
|
||||
ordereddict
|
||||
httplib2
|
||||
|
|
|
@ -5760,8 +5760,8 @@ def _cors_request_and_check(func, url, headers, expect_status, expect_allow_orig
|
|||
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
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue