From caa840ce251c2c867883ad117f2c4801848f22e9 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Fri, 18 Sep 2026 16:39:53 +0100 Subject: Run the Landscape status check with sudo --- tests/test_canonical.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_canonical.py') diff --git a/tests/test_canonical.py b/tests/test_canonical.py index c68bd48..76c61d1 100644 --- a/tests/test_canonical.py +++ b/tests/test_canonical.py @@ -69,13 +69,13 @@ class PackageTests(unittest.TestCase): canonical.check() self.assertTrue( any( - call.args[0] == ["landscape-config", "--actively-registered"] + call.args[0] == ["sudo", "landscape-config", "--actively-registered"] for call in command.call_args_list ) ) self.assertTrue( any( - call.args[0] == ["nix", "store", "ping", "--store", "daemon"] + call.args[0] == ["nix", "store", "info", "--store", "daemon"] for call in command.call_args_list ) ) -- cgit v1.3.1