aboutsummaryrefslogtreecommitdiff
path: root/app/tests/test_hub.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-28 03:16:14 -0400
committerhistoria <historiavg@proton.me>2026-08-28 03:16:14 -0400
commitd487996281f71ccd3034dd708fa099057e528b42 (patch)
tree989d9f40f5c2dbb03e1cf570f2c463f43cf5ac76 /app/tests/test_hub.py
parent5c3db8f500ff206f3a675d8f4184cb0d61f94804 (diff)
downloadtts-audiobook-generator-d487996281f71ccd3034dd708fa099057e528b42.tar.gz
feat: unified logging with logging_kit.py
Diffstat (limited to 'app/tests/test_hub.py')
-rw-r--r--app/tests/test_hub.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/tests/test_hub.py b/app/tests/test_hub.py
index f0af74c..0bdf2d5 100644
--- a/app/tests/test_hub.py
+++ b/app/tests/test_hub.py
@@ -2535,10 +2535,11 @@ class SettingsTests(unittest.TestCase):
# The ports section note hangs off the first port field, the remote
# section note off the first remote URL field.
notes = {f["key"]: f.get("note") for f in captured["fields"]}
- self.assertTrue(notes["input_dir"])
- self.assertTrue(notes["output_dir"])
- self.assertTrue(notes["debug"])
+ self.assertIsNone(notes["input_dir"])
+ self.assertIsNone(notes["output_dir"])
+ self.assertIsNone(notes["debug"])
self.assertTrue(notes["stop_and_exit"])
+ self.assertTrue(notes["unload_models"])
self.assertTrue(notes["audiocpp_port"])
self.assertTrue(notes["audiocpp_remote_url"])
self.assertIsNone(notes["audio_format"])