diff options
author | Matěj Cepl <mcepl@redhat.com> | 2012-03-31 11:55:15 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2012-03-31 13:21:23 +0200 |
commit | 53d7ba3e2712585c51a19f6fcc3b7ff1e5e49e2e (patch) | |
tree | 9106aa452e1ed53851857e4de57b56b3b11c0f0b /test | |
parent | 4813712507fdc51e915d98f26f87db407ad21d38 (diff) | |
download | yamlish-53d7ba3e2712585c51a19f6fcc3b7ff1e5e49e2e.tar.gz |
Multline strings are always compact.
Fixes #45
Also updates NEWS.txt
Diffstat (limited to 'test')
-rw-r--r-- | test/test_output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_output.py b/test/test_output.py index 907dea6..888f812 100644 --- a/test/test_output.py +++ b/test/test_output.py @@ -84,7 +84,7 @@ class TestOuptut(unittest.TestCase): Test output to a file. """ outf = tempfile.TemporaryFile() - yaml.safe_dump(IN, outf) + yamlish.dump(IN, outf) outf.seek(0) got_str = outf.read() outf.close() |