From 67d424a4b011fb1bff7d82eb9a07d9120370a958 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 12 Sep 2024 16:47:35 -0700 Subject: [PATCH] Troubleshoot test failure --- tests/unit_tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/unit_tests.py b/tests/unit_tests.py index f3fccce..d6b8b32 100644 --- a/tests/unit_tests.py +++ b/tests/unit_tests.py @@ -176,8 +176,7 @@ 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.config, - {"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):