Skip to content

Commit

Permalink
fix: update parse_yaml() test
Browse files Browse the repository at this point in the history
  • Loading branch information
synchon committed Nov 17, 2023
1 parent f4f45d9 commit 62567ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion junifer/api/tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_parse_yaml_success_with_module_autoload(tmp_path: Path) -> None:
assert "foo" in contents
assert contents["foo"] == "bar"
assert "with" in contents
assert contents["with"] == "numpy"
assert contents["with"] == ["numpy"]
assert "numpy" in sys.modules
assert "junifer.configs.wrong_config" not in sys.modules

Expand Down

0 comments on commit 62567ad

Please sign in to comment.