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/gui
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-08-04 18:11:39 +0300
committerHannah von Reth <vonreth@kde.org>2021-08-05 10:02:12 +0300
commit926b51ef05278e63341eeeb28470df72df986645 (patch)
tree2deb0aae66ba6218893a77d295187579adac09f9 /test/gui
parent4380f21309255d6c59bb43dbdc1ec0337990bc1d (diff)
WIP: Wait longer before we assume the client to be ready
Diffstat (limited to 'test/gui')
-rw-r--r--test/gui/shared/steps/steps.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gui/shared/steps/steps.py b/test/gui/shared/steps/steps.py
index d90dd56ef..56f8aceef 100644
--- a/test/gui/shared/steps/steps.py
+++ b/test/gui/shared/steps/steps.py
@@ -733,10 +733,10 @@ def step(context, resource, content):
# overwriting the file immediately after it has been synced from the server seems to have some problem.
# The client does not see the change although the changes have already been made thus we are having a race condition
- # So for now we add 3sec static wait
+ # So for now we add 5sec static wait
# an issue https://github.com/owncloud/client/issues/8832 has been created for it
- snooze(3)
+ snooze(5)
f = open(context.userData['clientSyncPath'] + resource, "w")
f.write(content)