summaryrefslogtreecommitdiff
path: root/_test/roundtrip.py
diff options
context:
space:
mode:
Diffstat (limited to '_test/roundtrip.py')
-rw-r--r--_test/roundtrip.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/_test/roundtrip.py b/_test/roundtrip.py
index 090b9e0..af8a555 100644
--- a/_test/roundtrip.py
+++ b/_test/roundtrip.py
@@ -169,6 +169,7 @@ def na_round_trip(
inp: input string to parse
outp: expected output (equals input if not specified)
"""
+ inp = dedent(inp)
if outp is None:
outp = inp
if version is not None:
@@ -194,10 +195,7 @@ def na_round_trip(
yaml.explicit_start = explicit_start
yaml.explicit_end = explicit_end
res = yaml.dump(data, compare=doutp)
- #if res != doutp:
- # diff(doutp, res, 'input string')
- #print('\nroundtrip data:\n', res, sep="")
- #assert res == doutp
+ return res
def YAML(**kw):