From f078cb4038d144bbe7868252d911ae2b07b56dff Mon Sep 17 00:00:00 2001 From: 0xbyt4 <35742124+0xbyt4@users.noreply.github.com> Date: Wed, 11 Mar 2026 20:58:26 +0300 Subject: [PATCH] fix(test): isolate WEB_TOKEN env var in test_web_defaults --- tests/gateway/test_web.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/gateway/test_web.py b/tests/gateway/test_web.py index d05d4dab3..f37c46552 100644 --- a/tests/gateway/test_web.py +++ b/tests/gateway/test_web.py @@ -72,6 +72,7 @@ class TestConfigEnvOverrides(unittest.TestCase): @patch.dict(os.environ, { "WEB_UI_ENABLED": "true", + "WEB_TOKEN": "", }, clear=False) def test_web_defaults(self): config = GatewayConfig()