From 32e9e4478e847757b13b82d9acc785b15eadcf5b Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 15 Jun 2026 21:04:34 +0200 Subject: [PATCH] Update test URL in web tool tests --- backend/tests/test_agent_web_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tests/test_agent_web_tools.py b/backend/tests/test_agent_web_tools.py index eb2c696..6aef4e4 100644 --- a/backend/tests/test_agent_web_tools.py +++ b/backend/tests/test_agent_web_tools.py @@ -133,7 +133,7 @@ class WebToolTests(unittest.IsolatedAsyncioTestCase): with patch("backend.agent.tools.web.fetch_website_snapshot", new=AsyncMock(side_effect=fake_fetch)): result = await registry.call_tool( "heimgeist.web_fetch", - {"url": None, "urls": [{"url": "https://news.google.com/topics/iran"}], "maximum_pages": 1}, + {"url": None, "urls": [{"url": "https://example.test/iran"}], "maximum_pages": 1}, context(registry), )