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:
authorDominik Schmidt <dev@dominik-schmidt.de>2020-12-14 17:42:35 +0300
committerHannah von Reth <vonreth@kde.org>2020-12-17 12:30:20 +0300
commit32e1ddb86c7f59c0ee1028efa6f297c4854e74b9 (patch)
tree1c497d60068ef818e617cc54c12835edb06a2f18
parent5ea958a62f55f2ba951c060863dfaa849ec63541 (diff)
Fix testVersionOfInstalledBinary for brandings
-rw-r--r--test/testutility.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testutility.cpp b/test/testutility.cpp
index 7803d4708..f981b5b92 100644
--- a/test/testutility.cpp
+++ b/test/testutility.cpp
@@ -119,7 +119,7 @@ private slots:
qDebug() << "Version of installed ownCloud Binary: " << ver;
QVERIFY(!ver.isEmpty());
- QRegExp rx("ownCloud \\d+\\.\\d+\\.\\d+.*");
+ QRegExp rx(APPLICATION_SHORTNAME " \\d+\\.\\d+\\.\\d+.*");
QVERIFY(rx.exactMatch(ver));
} else {
QVERIFY(versionOfInstalledBinary().isEmpty());