From 621ba0d26977326bd0646ca81676d20d3c60787b Mon Sep 17 00:00:00 2001 From: Chad Smith Date: Wed, 17 Sep 2025 16:45:08 -0600 Subject: [PATCH] test: fix integration for PROPOSED to run apt update prior to install --- tests/integration_tests/instances.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration_tests/instances.py b/tests/integration_tests/instances.py index 8268a775a2a..2dc16f80f5b 100644 --- a/tests/integration_tests/instances.py +++ b/tests/integration_tests/instances.py @@ -215,6 +215,7 @@ def install_proposed_image(self, pkg: str): '$(lsb_release -sc)-proposed main" >> ' "/etc/apt/sources.list.d/proposed.list" ).ok + assert self.execute("apt-get update").ok assert self.execute( f"apt-get install -qy {pkg} -t=$(lsb_release -sc)-proposed" ).ok