From 0ed37520ee7390b46bae77457d84ccc58dbaa6e2 Mon Sep 17 00:00:00 2001 From: Gaurav Talreja Date: Thu, 28 Dec 2023 18:38:42 +0530 Subject: [PATCH] Fix parametrization in capsule provisioning fixture (#13566) Signed-off-by: Gaurav Talreja --- pytest_fixtures/component/provision_capsule_pxe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest_fixtures/component/provision_capsule_pxe.py b/pytest_fixtures/component/provision_capsule_pxe.py index 4e3a3a2cf54..d158e596a88 100644 --- a/pytest_fixtures/component/provision_capsule_pxe.py +++ b/pytest_fixtures/component/provision_capsule_pxe.py @@ -173,7 +173,7 @@ def capsule_provisioning_rhel_content( that is specified in `request.param`. """ sat = capsule_provisioning_sat.sat - rhel_ver = request.param + rhel_ver = request.param['rhel_version'] repo_names = [] if int(rhel_ver) <= 7: repo_names.append(f'rhel{rhel_ver}')