From 43eac30dab6b91cb6cd1a869f30e76b0d6d1704f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Sun, 26 Oct 2025 23:25:08 +0100 Subject: [PATCH] tests: reset initial start in the dom0 updates check test If there are already some updates available, the test will unexpectedly fail. --- qubes/tests/integ/dom0_update.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qubes/tests/integ/dom0_update.py b/qubes/tests/integ/dom0_update.py index 247c4c292..dc51ddcf7 100644 --- a/qubes/tests/integ/dom0_update.py +++ b/qubes/tests/integ/dom0_update.py @@ -342,6 +342,7 @@ def test_000_update(self): def test_001_update_check(self): """Check if dom0 updates check works""" + self.app.domains[0].features["updates-available"] = False filename = self.create_pkg(self.tmpdir, self.pkg_name, "1.0") subprocess.check_call(["rpm", "-i", filename]) filename = self.create_pkg(self.tmpdir, self.pkg_name, "2.0")