diff options
author | Anthon van der Neut <anthon@mnt.org> | 2018-09-21 18:26:43 +0200 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2018-09-21 18:26:43 +0200 |
commit | 7303884f29383c9c0f71547a6e3d41997aac5cb1 (patch) | |
tree | 040fbe8f79781b957a9f0f3ced21f173c0bac724 /_test/test_issues.py | |
parent | 50aaa425ef4941e61518aaf275f30f4badaa9ce2 (diff) | |
download | ruamel.yaml-7303884f29383c9c0f71547a6e3d41997aac5cb1.tar.gz |
revert CommentedMap to ordereddict subclass
reimplemented merged dictionaries, they now have _ok (own key) set attribute
Diffstat (limited to '_test/test_issues.py')
-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 f3a0389..2651cff 100644 --- a/_test/test_issues.py +++ b/_test/test_issues.py @@ -408,7 +408,7 @@ class TestIssues: with pytest.raises(ruamel.yaml.parser.ParserError): yaml.safe_load('{]') - @pytest.mark.xfail(strict=True, reason='not a dict subclass', raises=TypeError) + # @pytest.mark.xfail(strict=True, reason='not a dict subclass', raises=TypeError) def test_issue_233(self): from ruamel.yaml import YAML import json |