Don't verify SSL during changeurl tests :/ (#332)

This commit is contained in:
Alexandre Aubin 2017-07-21 00:45:05 +02:00 committed by GitHub
parent 89189ed52f
commit c96d5f90ec

View file

@ -38,7 +38,7 @@ def check_changeurl_app(path):
assert appmap[maindomain][path + "/"]["id"] == "change_url_app"
r = requests.get("https://%s%s/" % (maindomain, path))
r = requests.get("https://%s%s/" % (maindomain, path), verify=False)
assert r.status_code == 200