summaryrefslogtreecommitdiff
path: root/_test/test_comments.py
diff options
context:
space:
mode:
Diffstat (limited to '_test/test_comments.py')
-rw-r--r--_test/test_comments.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/_test/test_comments.py b/_test/test_comments.py
index 64b8cd2..6c3d8c3 100644
--- a/_test/test_comments.py
+++ b/_test/test_comments.py
@@ -517,7 +517,7 @@ class TestCommentedMapMerge:
""")
assert data['x']['a'] == 1
assert data['y']['a'] == 1
- assert str(data['y']) == """ordereddict([('a', 1)])"""
+ assert str(data['y']) == """{'a': 1}"""
def test_issue_60_1(self) -> None:
data = round_trip_load("""
@@ -529,7 +529,7 @@ class TestCommentedMapMerge:
""")
assert data['x']['a'] == 1
assert data['y']['a'] == 1
- assert str(data['y']) == """ordereddict([('b', 2), ('a', 1)])"""
+ assert str(data['y']) == """{'b': 2, 'a': 1}"""
class TestEmptyLines: