We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4da187 commit a98c899Copy full SHA for a98c899
simulation_bridge/test/unit/test_logger.py
@@ -65,11 +65,6 @@ def fake_stdout(monkeypatch):
65
class TestSetupLoggerFileHandler:
66
"""Tests for file handler setup in setup_logger."""
67
68
- def test_mkdir_called_to_create_log_dir(self, mock_mkdir):
69
- """Verify that log directory creation is attempted."""
70
- logger.setup_logger(log_file="logs/test.log", enable_console=False)
71
- mock_mkdir.assert_called_once_with(parents=True, exist_ok=True)
72
-
73
def test_rotating_file_handler_created_with_correct_args(
74
self, mock_rotating_file_handler
75
):
0 commit comments