Fix test_oserror on older Pythons
This commit is contained in:
parent
543bc3bcaa
commit
d901bee88e
@ -221,7 +221,7 @@ class TestConfigPy:
|
|||||||
|
|
||||||
def test_oserror(self, tmpdir):
|
def test_oserror(self, tmpdir):
|
||||||
with pytest.raises(configexc.ConfigFileErrors) as excinfo:
|
with pytest.raises(configexc.ConfigFileErrors) as excinfo:
|
||||||
configfiles.read_config_py(tmpdir / 'foo')
|
configfiles.read_config_py(str(tmpdir / 'foo'))
|
||||||
|
|
||||||
assert len(excinfo.value.errors) == 1
|
assert len(excinfo.value.errors) == 1
|
||||||
error = excinfo.value.errors[0]
|
error = excinfo.value.errors[0]
|
||||||
|
Loading…
Reference in New Issue
Block a user