Skip to content

Commit 451976b

Browse files
committed
Be specific about exactly which minor version of py3.6 broke things
1 parent cdc7181 commit 451976b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/test_configobj.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def test_nested_copy_method(self, nested_conf):
196196
conf_dict = nested_conf.copy()
197197
assert conf_dict == {'a': {'foo': 'bar', 'baz': '$foo'}}
198198

199-
@pytest.mark.xfail(sys.version_info >= (3, 6),
199+
@pytest.mark.xfail(sys.version_info >= (3, 6, 7),
200200
reason="dict() now uses self.items()"
201201
" instead of dict.items()",
202202
strict=True)

0 commit comments

Comments
 (0)