Skip to content

Commit

Permalink
fix directory in logging tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakers-the-rat committed Nov 12, 2024
1 parent 85c7eff commit 21b4f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_init_logger(capsys, tmp_path):

log_dir = Path(tmp_path) / "logs"
log_dir.mkdir()
log_file = log_dir / "miniscope_io.test_logger.log"
log_file = log_dir / "miniscope_io.log"
logger = init_logger(name="test_logger", log_dir=log_dir, level="INFO", file_level="WARNING")
warn_msg = "Both loggers should show"
logger.warning(warn_msg)
Expand Down

0 comments on commit 21b4f94

Please sign in to comment.