From 6c677ac0c3242efd4cbe8e9902be6b0e0eb8bee5 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 12 Sep 2024 16:42:43 -0700 Subject: [PATCH] Troubleshoot test failure --- tests/unit_tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit_tests.py b/tests/unit_tests.py index 1fac667..f3fccce 100644 --- a/tests/unit_tests.py +++ b/tests/unit_tests.py @@ -176,7 +176,8 @@ def test_ovos_plugin_compat(self): "ovos-stt-plugin-server": {"url": "https://0.0.0.0:8080/stt"}} ) self.assertIsInstance(non_streaming, STT) - self.assertEqual(non_streaming.url, "https://0.0.0.0:8080/stt") + self.assertEqual(non_streaming.config, + {"url": "https://0.0.0.0:8080/stt"}) class ServiceTests(unittest.TestCase):