NOISSUE Fix outdated test

This commit is contained in:
janrupf 2019-06-19 21:23:17 +02:00 committed by Petr Mrázek
parent 4233e0c014
commit f04502cd82

View File

@ -33,7 +33,7 @@ slots:
QString folder = source;
QTemporaryDir tempDir;
SimpleModList m(tempDir.path());
m.installMod(folder);
m.installMod(folder, false);
verify(tempDir.path());
}
@ -42,7 +42,7 @@ slots:
QString folder = source + '/';
QTemporaryDir tempDir;
SimpleModList m(tempDir.path());
m.installMod(folder);
m.installMod(folder, false);
verify(tempDir.path());
}
}