From f9e40bf1cddcf74ee6633e1e9f70c0bdcbe279cf Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Wed, 6 Dec 2023 14:18:20 -0800 Subject: [PATCH] Update Messagebus import in tests --- tests/integration/test_chatbot_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_chatbot_core.py b/tests/integration/test_chatbot_core.py index b15a9ce..d7fcdc6 100644 --- a/tests/integration/test_chatbot_core.py +++ b/tests/integration/test_chatbot_core.py @@ -194,7 +194,7 @@ def test_15_histories_length(self): def test_messagebus_connection(self): from chatbot_core.utils.bot_utils import init_message_bus from threading import Thread - from mycroft_bus_client import MessageBusClient + from ovos_bus_client.client import MessageBusClient t, bus = init_message_bus() self.assertIsInstance(t, Thread)