From ae12e90d979de40db614297a3a62d94fec7ca211 Mon Sep 17 00:00:00 2001 From: Samuel Verschelde Date: Mon, 18 Dec 2023 12:08:51 +0100 Subject: [PATCH] UEFI test: fix windows SB test Don't remove the pool certs just after installing them, duh! Signed-off-by: Samuel Verschelde --- tests/uefi_sb/test_varstored_sb.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/uefi_sb/test_varstored_sb.py b/tests/uefi_sb/test_varstored_sb.py index e1fa1a048..d38c38da7 100644 --- a/tests/uefi_sb/test_varstored_sb.py +++ b/tests/uefi_sb/test_varstored_sb.py @@ -100,7 +100,6 @@ def test_windows_succeeds(self, uefi_vm): # We install them first in the pool with `secureboot-certs install`, which requires internet access logging.info("Install MS certs on pool with secureboot-certs install") vm.host.ssh(['secureboot-certs', 'install']) - vm.host.pool.clear_custom_uefi_certs() # Now install the default pool certs in the VM vm.set_uefi_user_mode() boot_and_check_sb_succeeded(vm)