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 1a3f372 commit fd2b313Copy full SHA for fd2b313
tests/test_logging.py
@@ -68,7 +68,7 @@ def test_logger_has_base_logger(logger_):
68
69
def test_logger_creates_logfile(tmp_path):
70
logger = setup_logging("test_logger", set_base_handler=True, user_log_path=tmp_path)
71
- log_file = os.path.join(tmp_path, f"sed_{datetime.now().strftime('%Y-%m-%d')}.log")
+ log_file = os.path.join(tmp_path, f"specsanalyzer_{datetime.now().strftime('%Y-%m-%d')}.log")
72
assert os.path.exists(log_file)
73
with open(log_file) as f:
74
assert f.read() == ""
0 commit comments