From 798548b65fbbdf287a098979a4a40e822a935b6c Mon Sep 17 00:00:00 2001 From: tligui_y Date: Fri, 1 Aug 2025 04:28:38 +0200 Subject: [PATCH] Update tests/test_utils_logcfg.py --- tests/test_utils_logcfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}"