From e1f5b573761b5b0497234f1407f6b04d580b50c5 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 ed2e55faf0b..ddecbc1429c 100644 --- a/tests/foreman/installer/test_installer.py +++ b/tests/foreman/installer/test_installer.py @@ -1262,7 +1262,7 @@ '= Module puppet:', } -SATELLITE_SERVICES = { +SATELLITE_SERVICES = [ 'dynflow-sidekiq@orchestrator', 'dynflow-sidekiq@worker-1', 'dynflow-sidekiq@worker-hosts-queue-1', @@ -1274,7 +1274,7 @@ 'pulpcore-content', 'pulpcore-worker@*', 'tomcat', -} +] def extract_help(filter='params'):