core - Remove cert verification when testing allowed methods in misc tests

This commit is contained in:
Théophile Diot 2023-05-18 16:47:35 -04:00
parent 04919e8a08
commit 62cb85453a
No known key found for this signature in database
GPG Key ID: E752C80DB72BB014
1 changed files with 1 additions and 0 deletions

View File

@ -148,6 +148,7 @@ try:
response = options(
f"http{'s' if ssl_generated else ''}://www.example.com",
headers={"Host": "www.example.com"},
verify=False,
)
if response.status_code == 405: