Skip to content

Commit

Permalink
fix the load error
Browse files Browse the repository at this point in the history
Co-authored-by: barneydobson <[email protected]>
  • Loading branch information
liuly12 and barneydobson authored Jul 31, 2024
1 parent f4a5b56 commit f0dfd47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def test_node_overrides(self):
node.apply_overrides({"data_input_dict": new_data_input_dict})
self.assertDictEqual(node.data_input_dict, new_data_input_dict)
# check the format of str
new_data_input_dict = "example_data_input_dict.csv.gz"
new_data_input_dict = str(Path(__file__).parent / "example_data_input_dict.csv.gz")
node.apply_overrides({"data_input_dict": new_data_input_dict})
from wsimod.orchestration.model import read_csv

Expand Down

0 comments on commit f0dfd47

Please sign in to comment.