Skip to content

Commit

Permalink
Merge pull request #6 from jfindlay/yaml_opts
Browse files Browse the repository at this point in the history
compare OrderedDicts in serializer unit test
  • Loading branch information
Mike Place committed Mar 12, 2015
2 parents 6c23cf8 + fd829a9 commit 82dc90f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/utils/serializers_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def test_compare_sls_vs_yaml_with_jinja(self):
assert obj == final_obj

# BLAAM! yml_src is not valid !
final_obj = yaml.deserialize(yml_src)
final_obj = OrderedDict(yaml.deserialize(yml_src))
assert obj != final_obj

@skipIf(not yamlex.available, SKIP_MESSAGE % 'sls')
Expand Down

0 comments on commit 82dc90f

Please sign in to comment.