diff --git a/tests/test_main.py b/tests/test_main.py index ad35f1d933..a328f6919b 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -381,6 +381,7 @@ def test_proxy_context_manager(self) -> None: 'http': 'http://127.0.0.1:8888', 'https': 'http://127.0.0.1:8888', }, + timeout=60, ) self.assertEqual(response.status_code, 200) response = requests.get( @@ -388,5 +389,6 @@ def test_proxy_context_manager(self) -> None: 'http': 'http://127.0.0.1:8888', 'https': 'http://127.0.0.1:8888', }, + timeout=60, ) self.assertEqual(response.status_code, 200)