mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 15:43:50 +02:00
Fixed reversed boolean.
This commit is contained in:
parent
d74d3ecab3
commit
bcec0c8fbd
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ bool Test::createTestResultsFolderPath(const QString& directory) {
|
|||
void Test::zipAndDeleteTestResultsFolder() {
|
||||
QString zippedResultsFileName { _testResultsFolderPath + ".zip" };
|
||||
QFileInfo fileInfo(zippedResultsFileName);
|
||||
if (!fileInfo.exists()) {
|
||||
if (fileInfo.exists()) {
|
||||
QFile::remove(zippedResultsFileName);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue