From 288aa77b43577cc75644190c5f368c7b0b06a554 Mon Sep 17 00:00:00 2001 From: Cole Higgins Date: Mon, 27 Nov 2023 14:37:31 -0500 Subject: [PATCH] updating to satellite 6.16 --- tests/foreman/cli/test_subscription.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/foreman/cli/test_subscription.py b/tests/foreman/cli/test_subscription.py index 31033f71f5b..3675d23f3fb 100644 --- a/tests/foreman/cli/test_subscription.py +++ b/tests/foreman/cli/test_subscription.py @@ -286,12 +286,12 @@ def test_positive_prepare_for_sca_only_hammer(function_org, target_sat): org_results = target_sat.execute( f'hammer organization update --id {function_org.id} --simple-content-access false' ) - assert 'Simple Content Access will be required for all organizations in Katello 4.12' in str( + assert 'Simple Content Access will be required for all organizations in Satellite 6.16' in str( org_results.stderr ) sca_results = target_sat.execute( f'hammer simple-content-access disable --organization-id {function_org.id}' ) - assert 'Simple Content Access will be required for all organizations in Katello 4.12' in str( + assert 'Simple Content Access will be required for all organizations in Satellite 6.16' in str( sca_results.stderr )