From 48dd4c67cad57c950d14663d079de4eb34b7baa8 Mon Sep 17 00:00:00 2001 From: Griffin Sullivan <48397354+Griffin-Sullivan@users.noreply.github.com> Date: Tue, 23 May 2023 12:24:17 -0400 Subject: [PATCH] Switch SATELLITE_SERVICES to a list (#11522) (cherry picked from commit 164472431b61e9f5a5813c2c0de0bdb05e1443d3) --- tests/foreman/installer/test_installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/foreman/installer/test_installer.py b/tests/foreman/installer/test_installer.py index e0c6cb27eef..a167efc0881 100644 --- a/tests/foreman/installer/test_installer.py +++ b/tests/foreman/installer/test_installer.py @@ -1251,7 +1251,7 @@ '= Module puppet:', } -SATELLITE_SERVICES = { +SATELLITE_SERVICES = [ 'dynflow-sidekiq@orchestrator', 'dynflow-sidekiq@worker-1', 'dynflow-sidekiq@worker-hosts-queue-1', @@ -1263,7 +1263,7 @@ 'pulpcore-content', 'pulpcore-worker@*', 'tomcat', -} +] def extract_help(filter='params'):