From c32927948269daf15ddd75fd362f00b20bdbef65 Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Fri, 19 Jun 2026 20:49:59 -0700 Subject: [PATCH] test: retarget source-path refs to migrated plugin paths test_telegram_webhook_secret reads telegram adapter source by path; point it at plugins/platforms/telegram/adapter.py. test_windows_native_support npm-spawn parametrization referenced gateway/platforms/whatsapp.py; point it at plugins/platforms/whatsapp/adapter.py. --- tests/gateway/test_telegram_webhook_secret.py | 2 +- tests/tools/test_windows_native_support.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gateway/test_telegram_webhook_secret.py b/tests/gateway/test_telegram_webhook_secret.py index 268a52e327e..0c37ea47ebc 100644 --- a/tests/gateway/test_telegram_webhook_secret.py +++ b/tests/gateway/test_telegram_webhook_secret.py @@ -31,7 +31,7 @@ class TestTelegramWebhookSecretRequired: """ def _get_source(self) -> str: - path = Path(_repo) / "gateway" / "platforms" / "telegram.py" + path = Path(_repo) / "plugins" / "platforms" / "telegram" / "adapter.py" return path.read_text(encoding="utf-8") def test_webhook_branch_checks_secret(self): diff --git a/tests/tools/test_windows_native_support.py b/tests/tools/test_windows_native_support.py index 3abf5bf80f2..403dcc602c7 100644 --- a/tests/tools/test_windows_native_support.py +++ b/tests/tools/test_windows_native_support.py @@ -766,7 +766,7 @@ class TestNpmBareSpawnsResolved: [ "hermes_cli/tools_config.py", "hermes_cli/doctor.py", - "gateway/platforms/whatsapp.py", + "plugins/platforms/whatsapp/adapter.py", "tools/browser_tool.py", ], )