From 0f075ce10918ed09c3e6ca3e8b81540d104412c8 Mon Sep 17 00:00:00 2001 From: Griffin Sullivan <48397354+Griffin-Sullivan@users.noreply.github.com> Date: Mon, 11 Mar 2024 09:16:15 -0400 Subject: [PATCH] Fix manifest file transer for fam (#14238) --- tests/foreman/sys/test_fam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/foreman/sys/test_fam.py b/tests/foreman/sys/test_fam.py index 1a0d6a92b81..f4500a2b599 100644 --- a/tests/foreman/sys/test_fam.py +++ b/tests/foreman/sys/test_fam.py @@ -49,7 +49,7 @@ def setup_fam(module_target_sat, module_sca_manifest): module_target_sat.execute(f"sed -i '/^live/ s/$(MANIFEST)//' {FAM_ROOT_DIR}/Makefile") # Upload manifest to test playbooks directory - module_target_sat.put(module_sca_manifest.path, module_sca_manifest.name) + module_target_sat.put(str(module_sca_manifest.path), str(module_sca_manifest.name)) module_target_sat.execute( f'mv {module_sca_manifest.name} {FAM_ROOT_DIR}/tests/test_playbooks/data' )