Check that content path exists before returning it from storage class (#1317)

This commit is contained in:
Veronica Berglyd Olsen
2023-02-05 18:12:50 +01:00
parent cdbfcafc38
commit 492d94ee6e
2 changed files with 10 additions and 1 deletions
+1
View File
@@ -469,6 +469,7 @@ def testCoreTree_ToCFile(monkeypatch, mockGUI, mockItems, tmpPath):
assert theTree.writeToCFile() is False
theProject._storage._runtimePath = tmpPath
(tmpPath / "content").mkdir()
assert theTree.writeToCFile() is True
pathA = str(Path("content") / "c000000000001.nwd")