summaryrefslogtreecommitdiff
path: root/_test/test_collections.py
diff options
context:
space:
mode:
Diffstat (limited to '_test/test_collections.py')
-rw-r--r--_test/test_collections.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/_test/test_collections.py b/_test/test_collections.py
index e6033bb..40af9db 100644
--- a/_test/test_collections.py
+++ b/_test/test_collections.py
@@ -16,6 +16,5 @@ from roundtrip import round_trip, dedent, round_trip_load, round_trip_dump # NO
class TestOrderedDict:
def test_ordereddict(self):
from collections import OrderedDict
- import ruamel.yaml # NOQA
- assert ruamel.yaml.dump(OrderedDict()) == '!!omap []\n'
+ assert round_trip_dump(OrderedDict()) == '!!omap []\n'