mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 12:38:27 +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() {
|
void Test::zipAndDeleteTestResultsFolder() {
|
||||||
QString zippedResultsFileName { _testResultsFolderPath + ".zip" };
|
QString zippedResultsFileName { _testResultsFolderPath + ".zip" };
|
||||||
QFileInfo fileInfo(zippedResultsFileName);
|
QFileInfo fileInfo(zippedResultsFileName);
|
||||||
if (!fileInfo.exists()) {
|
if (fileInfo.exists()) {
|
||||||
QFile::remove(zippedResultsFileName);
|
QFile::remove(zippedResultsFileName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue