diff options
| author | historia <historiavg@proton.me> | 2026-08-28 03:16:14 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-08-28 03:16:14 -0400 |
| commit | d487996281f71ccd3034dd708fa099057e528b42 (patch) | |
| tree | 989d9f40f5c2dbb03e1cf570f2c463f43cf5ac76 /app/tests/test_hub.py | |
| parent | 5c3db8f500ff206f3a675d8f4184cb0d61f94804 (diff) | |
| download | tts-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.py | 7 |
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"]) |
