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:
authorSwoichha Adhikari <swoichhaa@gmail.com>2021-05-26 14:33:21 +0300
committerGitHub <noreply@github.com>2021-05-26 14:33:21 +0300
commiteac5bcbd306d09995f6b9fe4956c38d2142ad2d2 (patch)
tree3f519d0ca20c805f211c49cfd9276ee9b28c3728 /test/gui/shared/scripts
parent808284d75bb23a85de3c8068051995dbbf8e18d2 (diff)
[tests-only] refactor steps with password in them (#8656)
Diffstat (limited to 'test/gui/shared/scripts')
-rw-r--r--test/gui/shared/scripts/helpers/SetupClientHelper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gui/shared/scripts/helpers/SetupClientHelper.py b/test/gui/shared/scripts/helpers/SetupClientHelper.py
index 5a572716f..61639bba8 100644
--- a/test/gui/shared/scripts/helpers/SetupClientHelper.py
+++ b/test/gui/shared/scripts/helpers/SetupClientHelper.py
@@ -55,7 +55,7 @@ def getPollingInterval():
return pollingInterval
-def setUpClient(context, username, confFilePath):
+def setUpClient(context, username, displayName, confFilePath):
userSetting = '''
[Accounts]
0/Folders/1/ignoreHiddenFiles=true
@@ -76,7 +76,7 @@ def setUpClient(context, username, confFilePath):
userFirstName = username.split()
userSetting = userSetting + getPollingInterval()
args = {
- 'displayUserName': username,
+ 'displayUserName': displayName,
'davUserName': userFirstName[0].lower(),
'displayUserFirstName': userFirstName[0],
'client_sync_path': context.userData['clientSyncPath'],