Fix failing test due to config init change

This commit is contained in:
Veronica Berglyd Olsen
2025-01-16 21:46:22 +01:00
parent 0380a7fe72
commit 9c04899df5
2 changed files with 1 additions and 7 deletions
-6
View File
@@ -84,12 +84,6 @@ def testBaseConfig_Constructor(monkeypatch):
assert tstConf.osWindows is False
assert tstConf.osUnknown is True
# App is single file
with monkeypatch.context() as mp:
mp.setattr("pathlib.Path.is_file", lambda *a: True)
tstConf = Config()
assert tstConf._appPath == tstConf._appRoot
@pytest.mark.base
def testBaseConfig_InitLoadSave(monkeypatch, fncPath, tstPaths):