From 24aa02179bea7dff7c9b6d95c3076e5f3a9a7c3b Mon Sep 17 00:00:00 2001 From: Kong Date: Sat, 27 Jun 2026 13:43:37 +0800 Subject: [PATCH] test(whatsapp): repoint owner test import after adapter relocation WhatsAppAdapter lives under plugins/platforms/whatsapp/adapter.py on current upstream; the owner-forward test still imported the removed gateway.platforms.whatsapp module. --- tests/gateway/test_whatsapp_from_owner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gateway/test_whatsapp_from_owner.py b/tests/gateway/test_whatsapp_from_owner.py index 792b6af7369..d3c8bf5552c 100644 --- a/tests/gateway/test_whatsapp_from_owner.py +++ b/tests/gateway/test_whatsapp_from_owner.py @@ -18,7 +18,7 @@ from unittest.mock import AsyncMock, MagicMock import pytest from gateway.config import Platform, PlatformConfig -from gateway.platforms.whatsapp import WhatsAppAdapter +from plugins.platforms.whatsapp.adapter import WhatsAppAdapter def _make_adapter():