diff options
| author | Anthon van der Neut <anthon@mnt.org> | 2018-08-17 08:35:22 +0200 |
|---|---|---|
| committer | Anthon van der Neut <anthon@mnt.org> | 2018-08-17 08:35:22 +0200 |
| commit | 9f0c82ec785c9e4502ce3dea03d6e97c392c29bd (patch) | |
| tree | 127fc49f8ad8491f30744b91e636475ec1b96c23 /_test | |
| parent | c2b39d26c0aa7d6536d60ba0329b19e3d943a818 (diff) | |
| download | ruamel.yaml-9f0c82ec785c9e4502ce3dea03d6e97c392c29bd.tar.gz | |
fix issue 222 string to dump checked against 1.1 patterns0.15.58
Diffstat (limited to '_test')
| -rw-r--r-- | _test/test_issues.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/test_issues.py b/_test/test_issues.py index 76fae01..cd9521c 100644 --- a/_test/test_issues.py +++ b/_test/test_issues.py @@ -282,7 +282,7 @@ class TestIssues: def test_issue_22(self): import ruamel.yaml from ruamel.yaml.compat import StringIO + buf = StringIO() ruamel.yaml.safe_dump(['012923'], buf) assert buf.getvalue() == "['012923']\n" - |
