diff options
author | Anthon van der Neut <anthon@mnt.org> | 2018-08-14 21:00:50 +0200 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2018-08-14 21:00:50 +0200 |
commit | 3a1db0b45daaf5cf7d3587170f9571691cd82bf5 (patch) | |
tree | 8d9b9aa9a7af768e29b1398acaa4aca34fc36f8a /_test/test_api_change.py | |
parent | ecd5f8dbaf580fa618205845374256a301d0675f (diff) | |
download | ruamel.yaml-3a1db0b45daaf5cf7d3587170f9571691cd82bf5.tar.gz |
fix issue #165 Python2 raising error when Unicode text involved in duplicate key warning.0.15.55
I could only reproduce this in Python2, finally fixed it.
*When this change indeed resolves your problem, please **Close** this issue*.
*(You can do so using the WorkFlow pull-down (close to the top right of this page))*
Diffstat (limited to '_test/test_api_change.py')
-rw-r--r-- | _test/test_api_change.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/_test/test_api_change.py b/_test/test_api_change.py index 43c8c90..b5b3d00 100644 --- a/_test/test_api_change.py +++ b/_test/test_api_change.py @@ -215,7 +215,6 @@ class TestFlowStyle: class TestOldAPI: @pytest.mark.skipif(sys.version_info >= (3, 0), reason='ok on Py3') - @pytest.mark.xfail(strict=True) def test_duplicate_keys_02(self): # Issue 165 unicode keys in error/warning from ruamel.yaml import safe_load |