fix: update salvaged tests to relocated feishu adapter path

gateway/platforms/feishu.py moved to plugins/platforms/feishu/adapter.py
since the original branch was cut.
This commit is contained in:
teknium1 2026-07-05 06:45:19 -07:00 committed by Teknium
parent 77700a0ec0
commit 1b69ad0b8b

View file

@ -261,7 +261,7 @@ class TestFeishuAdapterMessaging(unittest.TestCase):
import threading
from types import SimpleNamespace
from gateway.config import PlatformConfig
from gateway.platforms.feishu import FeishuAdapter
from plugins.platforms.feishu.adapter import FeishuAdapter
adapter = FeishuAdapter(PlatformConfig())
@ -311,7 +311,7 @@ class TestFeishuAdapterMessaging(unittest.TestCase):
"""
from types import SimpleNamespace
from gateway.config import PlatformConfig
from gateway.platforms.feishu import FeishuAdapter
from plugins.platforms.feishu.adapter import FeishuAdapter
adapter = FeishuAdapter(PlatformConfig())
# No ``_disconnect`` attribute — ``hasattr`` guard should skip.