Skip to content

Commit

Permalink
refactor: update paths to OS deps
Browse files Browse the repository at this point in the history
  • Loading branch information
0hsn committed Oct 4, 2024
1 parent 78b9549 commit 8acf3a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/modules/workflow/wf_entities_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_from_dict_pass():
)

assert task.uses == "fetch"
assert task.file == f"{fp}/coinstats-usd-validate.chk"
assert task.file == str(fp_p / "coinstats-usd-validate.chk")


class TestChkwareValidateTask:
Expand All @@ -52,7 +52,7 @@ def test_from_dict_pass():
)

assert task.uses == "validate"
assert task.file == f"{fp}/coinstats-usd-validate.chk"
assert task.file == str(fp_p / "coinstats-usd-validate.chk")
assert isinstance(task.arguments, ChkwareValidateTask.ChkwareTaskDataArgument)

task = ChkwareValidateTask(
Expand Down

0 comments on commit 8acf3a0

Please # to comment.