diff --git a/tests/test_utils_logcfg.py b/tests/test_utils_logcfg.py index 9e5da24bb..cde3502b9 100644 --- a/tests/test_utils_logcfg.py +++ b/tests/test_utils_logcfg.py @@ -73,6 +73,6 @@ def test_import_logging_once_per_module(): stderr = result.stderr print(stderr) lines = stderr.splitlines() - for mod in ["json", "math", "io", "random"]: + for mod in ["math", "io", "random"]: count = sum(1 for line in lines if f"importing: {mod}" in line) assert count == 1, f"Expected 1 import log for '{mod}', found {count}"