Skip to content

Commit 8b90603

Browse files
committed
Resolve temp dir in unit tests
Signed-off-by: Bram Stoeller <bram.stoeller@alliander.com>
1 parent 94c2963 commit 8b90603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/utils/test_download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
@pytest.fixture()
2727
def temp_dir():
2828
with tempfile.TemporaryDirectory() as tmp:
29-
yield Path(tmp)
29+
yield Path(tmp).resolve()
3030

3131

3232
def make_file(file_path: Path, file_size: int = 0):

0 commit comments

Comments
 (0)