diff --git a/plinth/modules/upgrades/templates/update-firstboot.html b/plinth/modules/upgrades/templates/update-firstboot.html index 9f3b6e717..f46291da1 100644 --- a/plinth/modules/upgrades/templates/update-firstboot.html +++ b/plinth/modules/upgrades/templates/update-firstboot.html @@ -29,7 +29,7 @@ {{ form|bootstrap }} - diff --git a/plinth/tests/functional/__init__.py b/plinth/tests/functional/__init__.py index 3bec1c31c..dafef6645 100644 --- a/plinth/tests/functional/__init__.py +++ b/plinth/tests/functional/__init__.py @@ -279,6 +279,10 @@ def login_with_account(browser, url, username, password): if '/firstboot/backports' in browser.url: submit(browser, element=browser.find_by_name('next')[0]) + if '/firstboot/update' in browser.url: + browser.find_by_id('id_update_now').uncheck() + submit(browser, element=browser.find_by_name('next')[0]) + ################# # App utilities #