From 7f703df08f277ee72ba6491f6c9fbcf529dd4fca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Wi=C5=9Bniewski?= Date: Tue, 4 Feb 2025 22:48:17 +0100 Subject: [PATCH] Fix conftest.py --- test/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/conftest.py b/test/conftest.py index d32607fc..aea7e7f6 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -81,7 +81,7 @@ def asset_loader() -> AssetLoader: start_time = datetime.datetime.now(tz=tzlocal.get_localzone()) log_file_path = ( - Path.cwd() / "log" / "test" / f"{start_time.strftime("%Y/%m/%d/%H_%M_%S")}.log" + Path.cwd() / "log" / "test" / f"{start_time.strftime('%Y/%m/%d/%H_%M_%S')}.log" ) log_file_path.parent.mkdir(0o777, parents=True, exist_ok=True) file_handler = logging.FileHandler(log_file_path.as_posix(), encoding="utf-8")