Fix test_filters fail because of dict sort (#18105)

Fixes #17308
(cherry picked from commit f99ffb5620)
This commit is contained in:
Adrian Likins 2016-10-19 16:11:09 -04:00
parent 257182e46a
commit fa8f9e9ead
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ Dumping the same structure to YAML
Dumping the same structure to JSON, but don't pretty print
["this is a list element", {"this": "is a hash element in a list", "where": "endor", "warp": 9}]
["this is a list element", {"this": "is a hash element in a list", "warp": 9, "where": "endor"}]
Dumping the same structure to YAML, but don't pretty print

View file

@ -7,7 +7,7 @@ Dumping the same structure to YAML
Dumping the same structure to JSON, but don't pretty print
{{ some_structure | to_json }}
{{ some_structure | to_json(sort_keys=true) }}
Dumping the same structure to YAML, but don't pretty print