From 157890a28c80845edb9c305adc7e396b01914e5a Mon Sep 17 00:00:00 2001 From: Benjamin Karlsson Date: Thu, 19 Dec 2024 13:00:49 +0100 Subject: [PATCH] update --- cli/tests/test_cli_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tests/test_cli_common.py b/cli/tests/test_cli_common.py index 889a01ed..00cb293d 100644 --- a/cli/tests/test_cli_common.py +++ b/cli/tests/test_cli_common.py @@ -260,7 +260,7 @@ class TestTorConnectionOnline: try: # Test if the Tor proxy is routing the traffic - response = requests.get(test_url, proxies=tor_proxy, timeout=10) + response = requests.get(test_url, proxies=tor_proxy, timeout=40) assert response.status_code == 200 and "Congratulations" in response.text, "Tor network connection is not correctly set up." except requests.RequestException as e: pytest.fail(f"Error connecting to Tor: {e}")