aboutsummaryrefslogtreecommitdiff
path: root/app/tests/test_backends.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-28 17:16:54 -0400
committerhistoria <historiavg@proton.me>2026-08-28 17:16:54 -0400
commite66eb0e7d4342ae1c58e9bbd341843753be548f0 (patch)
tree0ade3b71c86b59511d7653e450377a9366a30482 /app/tests/test_backends.py
parent270fa60c01866c4431d540be960b6cd2bc2b9c44 (diff)
downloadtts-audiobook-generator-e66eb0e7d4342ae1c58e9bbd341843753be548f0.tar.gz
feat: cli auto-starts and stops locally-managed servers if no --api-url is passed
Diffstat (limited to 'app/tests/test_backends.py')
-rw-r--r--app/tests/test_backends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/tests/test_backends.py b/app/tests/test_backends.py
index 64fd483..7a39880 100644
--- a/app/tests/test_backends.py
+++ b/app/tests/test_backends.py
@@ -169,7 +169,7 @@ class DetectAllTests(unittest.TestCase):
for model, wanted in (("Base", IDENTITY_QWEN_CLONE),
("VoiceDesign", IDENTITY_QWEN_DESIGN)):
with self.subTest(model=model):
- spec = qwen._build_spec(model)
+ spec = qwen.build_spec(model)
self.assertEqual(spec.identity, wanted)
self.assertIn(qwen.MODEL_REPOS[model], spec.argv)