diff options
Diffstat (limited to 'app/tests/test_backends.py')
| -rw-r--r-- | app/tests/test_backends.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/tests/test_backends.py b/app/tests/test_backends.py index 7a39880..e8ad1eb 100644 --- a/app/tests/test_backends.py +++ b/app/tests/test_backends.py @@ -37,9 +37,9 @@ class RegistryTests(unittest.TestCase): # another test class having called detect_all() first. get("audiocpp") - def test_registry_has_the_three_backends(self): + def test_registry_has_every_backend(self): keys = [info.key for info in REGISTRY] - self.assertEqual(keys, ["audiocpp", "qwen", "faster"]) + self.assertEqual(keys, ["audiocpp", "qwen", "faster", "sglomni"]) def test_every_entry_has_detect_setup_and_uninstall(self): for info in REGISTRY: @@ -65,9 +65,9 @@ class DetectAllTests(unittest.TestCase): with patch("backends.common.server_running", return_value=False): statuses = detect_all() self.assertEqual([s.key for s in statuses], - ["audiocpp", "qwen", "faster"]) + ["audiocpp", "qwen", "faster", "sglomni"]) for s in statuses: - self.assertIn(s.key, ("audiocpp", "qwen", "faster")) + self.assertIn(s.key, ("audiocpp", "qwen", "faster", "sglomni")) # ready requires both installed and configured; on a clean # machine none are ready. if s.ready: |
