From d487996281f71ccd3034dd708fa099057e528b42 Mon Sep 17 00:00:00 2001 From: historia Date: Fri, 28 Aug 2026 03:16:14 -0400 Subject: feat: unified logging with logging_kit.py --- app/tests/test_hub.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'app/tests/test_hub.py') 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"]) -- cgit v1.2.3