From 4a933bc881456c9031f741496eed669047a0fd1e Mon Sep 17 00:00:00 2001 From: Andrew Lukoshko Date: Mon, 4 May 2026 17:27:06 +0200 Subject: [PATCH] tests: align createiso hfs_compat expectations with new default Commit 65986b8e flipped the iso_hfs_ppc64le_compatible default from True to False but the createiso phase tests still asserted hfs_compat=True for the cases that rely on the default. Update the four affected expectations so test_start_one_worker, test_bootable, and test_bootable_but_failed pass again. The test that explicitly sets the option (already False) is unchanged. --- tests/test_createiso_phase.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_createiso_phase.py b/tests/test_createiso_phase.py index 76c7c62d..4bfc5b90 100644 --- a/tests/test_createiso_phase.py +++ b/tests/test_createiso_phase.py @@ -122,7 +122,7 @@ class CreateisoPhaseTest(helpers.PungiTestCase): supported=True, jigdo_dir=None, os_tree=None, - hfs_compat=True, + hfs_compat=False, use_xorrisofs=False, script_dir="%s/work/x86_64/tmp-Server" % self.topdir, ) @@ -249,7 +249,7 @@ class CreateisoPhaseTest(helpers.PungiTestCase): supported=True, jigdo_dir=None, os_tree=None, - hfs_compat=True, + hfs_compat=False, use_xorrisofs=False, script_dir="%s/work/x86_64/tmp-Server" % self.topdir, ), @@ -262,7 +262,7 @@ class CreateisoPhaseTest(helpers.PungiTestCase): supported=True, jigdo_dir=None, os_tree=None, - hfs_compat=True, + hfs_compat=False, use_xorrisofs=False, script_dir="%s/work/src/tmp-Server" % self.topdir, ), @@ -394,7 +394,7 @@ class CreateisoPhaseTest(helpers.PungiTestCase): supported=True, jigdo_dir=None, os_tree=None, - hfs_compat=True, + hfs_compat=False, use_xorrisofs=False, script_dir="%s/work/src/tmp-Server" % self.topdir, ) -- 2.47.3