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:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-10-12 14:44:54 +0300
committerHannah von Reth <vonreth@kde.org>2022-10-13 16:09:50 +0300
commit7c714d65f77a4b980b9365eef6412e5f3afecb25 (patch)
tree7fe6f7eeb7e5c0f3971f700f48d04297bb3a951c /test
parent294c5a56b2988d6c3a6dc23750f82719dc2ce214 (diff)
Port RequestEtagJob -> to PropFindJob
Fixes: #10179
Diffstat (limited to 'test')
-rw-r--r--test/testowncloudpropagator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testowncloudpropagator.cpp b/test/testowncloudpropagator.cpp
index e1a580c45..85aa8cf75 100644
--- a/test/testowncloudpropagator.cpp
+++ b/test/testowncloudpropagator.cpp
@@ -73,7 +73,7 @@ private slots:
tests.append(Test("W/\"foo\"", "foo"));
for (const auto &test : qAsConst(tests)) {
- QCOMPARE(parseEtag(test.first), QByteArray(test.second));
+ QCOMPARE(parseEtag(QString::fromUtf8(test.first)).toUtf8(), QByteArray(test.second));
}
}
};