From 47fe6acf731cfa7458003ad2cf3924932b637787 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 29 Oct 2019 18:29:24 -0700 Subject: [PATCH] Add a sleep to server_cockpit_autoupdate to work around #1765685 We don't know exactly what's going on with this bug yet, but as a 15 second sleep seems to avoid the issue, let's do that for now so we catch any future issues. Signed-off-by: Adam Williamson --- tests/server_cockpit_autoupdate.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/server_cockpit_autoupdate.pm b/tests/server_cockpit_autoupdate.pm index 45b6ae37..1bef71f5 100644 --- a/tests/server_cockpit_autoupdate.pm +++ b/tests/server_cockpit_autoupdate.pm @@ -15,6 +15,9 @@ sub run { # Navigate to the Update screen select_cockpit_update(); + # FIXME Workaround for RHBZ #1765685 - remove when it's fixed + sleep 15; + # Switch on automatic updates assert_and_click 'cockpit_updates_auto', '', 120; assert_and_click 'cockpit_updates_dnf_install', '', 120;