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
path: root/test
diff options
context:
space:
mode:
authorDominik Schmidt <dev@dominik-schmidt.de>2020-12-14 17:17:20 +0300
committerHannah von Reth <vonreth@kde.org>2020-12-17 12:30:20 +0300
commit563bc19345304ee981c6cd19ea37add885265e6c (patch)
tree4328e39fd2ebe408881f42d49e74d96c2cddbb2d /test
parent25ed9e8ac76499631b2e95d5fca013aa1a5e8a9e (diff)
Fix testVersionOfInstalledBinary
Diffstat (limited to 'test')
-rw-r--r--test/testutility.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testutility.cpp b/test/testutility.cpp
index 449c9a415..b6c590bed 100644
--- a/test/testutility.cpp
+++ b/test/testutility.cpp
@@ -120,7 +120,7 @@ private slots:
qDebug() << "Version of installed ownCloud Binary: " << ver;
QVERIFY(!ver.isEmpty());
- QRegExp rx("ownCloud version \\d+\\.\\d+\\.\\d+.*");
+ QRegExp rx("ownCloud \\d+\\.\\d+\\.\\d+.*");
QVERIFY(rx.exactMatch(ver));
} else {
QVERIFY(versionOfInstalledBinary().isEmpty());