Skip to content

Commit

Permalink
Fix: Missing Loader parameter in the test_yaml_patching.py test
Browse files Browse the repository at this point in the history
  • Loading branch information
koiker committed Dec 17, 2021
1 parent c58cb19 commit 380e532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_yaml_patching.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_yaml_no_ordered_dict():
"""

yaml_string = "key: value"
data = yaml.load(yaml_string)
data = yaml.load(yaml_string, Loader=yaml.SafeLoader)

assert type(data) == dict

Expand Down

0 comments on commit 380e532

Please sign in to comment.