mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
tests: somehow using 'Domain' as http header aint supported anymore, gotta use Host
This commit is contained in:
parent
5b9721eb23
commit
3b75485923
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ def check_changeurl_app(path):
|
|||
assert appmap[maindomain][path]["id"] == "change_url_app"
|
||||
|
||||
r = requests.get(
|
||||
"https://127.0.0.1%s/" % path, headers={"domain": maindomain}, verify=False
|
||||
"https://127.0.0.1%s/" % path, headers={"Host": maindomain}, verify=False
|
||||
)
|
||||
assert r.status_code == 200
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue