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>2020-06-25 13:08:33 +0300
committerHannah von Reth <vonreth@kde.org>2020-06-25 14:42:27 +0300
commit363f0e9e93a65bfd20d13cbcd4d44df2547d3aec (patch)
tree3f464f6173dc134ab53290d79d4e4084ffdd712e /test
parentb6e8f6cfb2665c2ce5b37ca5098f699ec69bb4be (diff)
OAuth: correctly initialise the auth type
Diffstat (limited to 'test')
-rw-r--r--test/testfolderman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testfolderman.cpp b/test/testfolderman.cpp
index 6dd8b0742..3881292dd 100644
--- a/test/testfolderman.cpp
+++ b/test/testfolderman.cpp
@@ -21,7 +21,7 @@ using namespace OCC;
class HttpCredentialsTest : public HttpCredentials {
public:
HttpCredentialsTest(const QString& user, const QString& password)
- : HttpCredentials(user, password)
+ : HttpCredentials(DetermineAuthTypeJob::AuthType::Basic, user, password)
{}
void askFromUser() override {