Skip to content

Commit

Permalink
Fix unit tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
DradeAW committed Mar 20, 2024
1 parent 3836169 commit 24ce830
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/core/test_lussac_params.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import pathlib

from lussac.core import LussacParams


def test_load_default_params() -> None:
params = LussacParams.load_default_params('params_synthetic', '/aze/')
print(params)
assert params['lussac']['tmp_folder'] == "/aze/lussac/tmp"
assert params['lussac']['tmp_folder'] == str(pathlib.Path("/aze") / "lussac" / "tmp")

0 comments on commit 24ce830

Please sign in to comment.