Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-07-21 14:28:18 +0300
committerHannah von Reth <vonreth@kde.org>2021-07-23 15:55:57 +0300
commitfe018a312965a3b8d6cff1fab704f4d5790e68d5 (patch)
tree309dcebc5d4fd2a0e2377bdb4c571a56dc498252 /test/testutils
parent1134a15859859e1aca6a873c5f6c8f4aff1d0850 (diff)
Exclude placeholder files
Diffstat (limited to 'test/testutils')
-rw-r--r--test/testutils/syncenginetestutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testutils/syncenginetestutils.cpp b/test/testutils/syncenginetestutils.cpp
index 478cf5c2e..b31eb34e8 100644
--- a/test/testutils/syncenginetestutils.cpp
+++ b/test/testutils/syncenginetestutils.cpp
@@ -1086,7 +1086,7 @@ OCC::SyncFileItemPtr ItemCompletedSpy::findItem(const QString &path) const
if (item->destination() == path)
return item;
}
- return OCC::SyncFileItemPtr::create();
+ return nullptr;
}
FakeReply::FakeReply(QObject *parent)