Fixed a path bug ...

This commit is contained in:
Veronica K. B. Olsen
2019-05-17 11:09:11 +02:00
parent 3bf772ca2e
commit 4e2a1fa2c5
+2 -2
View File
@@ -103,9 +103,9 @@ def testMainWindows(qtbot, tmpdir):
qtbot.wait(stepDelay)
# Check the files
projFile = str(projDir.join("nwProject.nwx"))
projFile = path.join(projDir,"nwProject.nwx")
assert cmpFiles(projFile, path.join(testRef,"gui_nwProject.nwx"), [2])
sceneFile = str(projDir.join("data_3","1489056e0916_main.nwd"))
sceneFile = path.join(projDir,"data_3","1489056e0916_main.nwd")
assert cmpFiles(sceneFile, path.join(testRef,"gui_1489056e0916_main.nwd"))
# qtbot.stopForInteraction()