From 569349ad795052b063ef83a479533b3348d1ccb1 Mon Sep 17 00:00:00 2001 From: Anindya Roy <104991338+gitofanindya@users.noreply.github.com> Date: Fri, 29 Nov 2024 11:55:28 +0530 Subject: [PATCH] Update test_options.py --- tests/unit/test_options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_options.py b/tests/unit/test_options.py index fd46466a5a..788e277eeb 100644 --- a/tests/unit/test_options.py +++ b/tests/unit/test_options.py @@ -268,7 +268,7 @@ def test_server_and_local_config_with_default_value_forced(): def test_site_update_url(): url = f"{Options.update_site_url}/versions.yml" - with requests.get(url, verify=False) as resp: + with requests.get(url) as resp: resp.raise_for_status()