diff options
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"]) |
