mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
compare OrderedDicts in serializer unit test
This commit is contained in:
parent
a22170627c
commit
ffd18493e8
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ class TestSerializers(TestCase):
|
|||
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')
|
||||
|
|
Loading…
Add table
Reference in a new issue