diff options
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() |