summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2023-05-05 20:34:39 +0000
committerMatthias Clasen <mclasen@redhat.com>2023-05-05 20:34:39 +0000
commite2d659d5c2f78c5126a106b3c2233088172377e2 (patch)
treecbc09277dbf6baffab59363ec08a5caa84f794c0
parentb5b7e1f2b40ae23f889b14c0460aafcc263ae424 (diff)
parent8ad1189b0b6653d79e1f4ac68ede89eb31dd552b (diff)
downloadgtk+-e2d659d5c2f78c5126a106b3c2233088172377e2.tar.gz
Merge branch 'matthiasc/for-main' into 'main'
ci: Bump timeouts for headless tests See merge request GNOME/gtk!5925
-rw-r--r--testsuite/headless/headless-input-tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/headless/headless-input-tests.py b/testsuite/headless/headless-input-tests.py
index 99e5251e80..d09d162cad 100644
--- a/testsuite/headless/headless-input-tests.py
+++ b/testsuite/headless/headless-input-tests.py
@@ -218,7 +218,7 @@ def launch_observer():
window.maximize()
window.present()
- wait(500)
+ wait(2000)
assert window.is_active(), "Observer not active"
assert window.get_width() == 1024, "Window not maximized"
@@ -360,7 +360,7 @@ def launch_drag_source(value):
ds_window.maximize()
ds_window.present()
- wait(500)
+ wait(2000)
assert ds_window.is_active(), "drag source not active"
assert ds_window.get_width() == 1024, "Window not maximized"
@@ -410,7 +410,7 @@ def launch_drop_target():
dt_window.maximize()
dt_window.present()
- wait(500)
+ wait(2000)
assert dt_window.is_active(), "drop target not active"
assert dt_window.get_width() == 1024, "Window not maximized"
@@ -456,7 +456,7 @@ def dnd_tests():
wait(150)
pointer_move(120, 150)
- expect_drag(timeout=1000)
+ expect_drag(timeout=2000)
launch_drop_target()
wait(100);