Skip to content

Commit fd2b313

Browse files
committed
fix tests
1 parent 1a3f372 commit fd2b313

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def test_logger_has_base_logger(logger_):
6868

6969
def test_logger_creates_logfile(tmp_path):
7070
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")
71+
log_file = os.path.join(tmp_path, f"specsanalyzer_{datetime.now().strftime('%Y-%m-%d')}.log")
7272
assert os.path.exists(log_file)
7373
with open(log_file) as f:
7474
assert f.read() == ""

0 commit comments

Comments
 (0)