We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee79f63 commit 585c4e5Copy full SHA for 585c4e5
1 file changed
test/unit_test/headless/test_egress_guard_batch.py
@@ -54,9 +54,9 @@ def test_comma_string_is_accepted():
54
def test_http_client_enforces_policy():
55
from je_auto_control.utils.http_client.http_client import http_request
56
set_egress_policy(allow=["allowed.test"])
57
- # blocked before any connection is attempted
+ # blocked before any connection is attempted (scheme is irrelevant here)
58
with pytest.raises(EgressBlocked):
59
- http_request("http://blocked.test/")
+ http_request("https://blocked.test/")
60
61
62
# --- wiring ---------------------------------------------------------------
0 commit comments