Update tests/test_utils_logcfg.py
Run CI Tests / test (push) Successful in 51s

This commit is contained in:
2025-08-01 04:28:38 +02:00
parent 7723ee9ebf
commit 798548b65f
+1 -1
View File
@@ -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}"