diff --git a/convert2rhel/breadcrumbs.py b/convert2rhel/breadcrumbs.py index a6fd9015d0..985acb9ee2 100644 --- a/convert2rhel/breadcrumbs.py +++ b/convert2rhel/breadcrumbs.py @@ -213,16 +213,16 @@ def _save_rhsm_facts(self): def print_data_collection(self): """Print information about data collection and ask for acknowledgement.""" loggerinst.info( - "The convert2rhel utility generates a /etc/rhsm/facts/convert2rhel.fact file that contains the below data" - " about the system conversion. The subscription-manager then uploads the data to the server the system is" - " registered to.\n" + "The convert2rhel utility generates a %s file that contains the below data about the system conversion." + " The subscription-manager then uploads the data to the server the system is registered to.\n" "- The Convert2RHEL command as executed\n" "- The Convert2RHEL RPM version and GPG signature\n" "- Success or failure status of the conversion\n" "- Conversion start and end timestamps\n" "- Source OS vendor and version\n" "- Target RHEL version\n" - "- Convert2RHEL related environment variables\n\n" + "- Convert2RHEL related environment variables\n\n", + RHSM_CUSTOM_FACTS_FILE, ) utils.ask_to_continue() diff --git a/tests/integration/tier0/non-destructive/basic-sanity-checks/test_basic_sanity_checks.py b/tests/integration/tier0/non-destructive/basic-sanity-checks/test_basic_sanity_checks.py index 47ae01119a..0356a51874 100644 --- a/tests/integration/tier0/non-destructive/basic-sanity-checks/test_basic_sanity_checks.py +++ b/tests/integration/tier0/non-destructive/basic-sanity-checks/test_basic_sanity_checks.py @@ -240,7 +240,7 @@ def test_data_collection_acknowledgement(shell, convert2rhel): assert c2r.expect("Prepare: Inform about data collection", timeout=300) == 0 assert ( c2r.expect( - "The convert2rhel utility generates a /etc/rhsm/facts/convert2rhel.fact file that contains the below data about the system conversion.", + "The convert2rhel utility generates a /etc/rhsm/facts/convert2rhel.facts file that contains the below data about the system conversion.", timeout=300, ) == 0 diff --git a/tests/integration/tier0/non-destructive/single-yum-transaction-validation/test_single_yum_transaction_validation.py b/tests/integration/tier0/non-destructive/single-yum-transaction-validation/test_single_yum_transaction_validation.py index 2223f849f5..7adbd73171 100644 --- a/tests/integration/tier0/non-destructive/single-yum-transaction-validation/test_single_yum_transaction_validation.py +++ b/tests/integration/tier0/non-destructive/single-yum-transaction-validation/test_single_yum_transaction_validation.py @@ -211,7 +211,7 @@ def test_validation_packages_with_in_name_period(shell, convert2rhel, packages_w assert c2r.expect("Prepare: Inform about data collection", timeout=300) == 0 assert ( c2r.expect( - "The convert2rhel utility generates a /etc/rhsm/facts/convert2rhel.fact file that contains the below data about the system conversion.", + "The convert2rhel utility generates a /etc/rhsm/facts/convert2rhel.facts file that contains the below data about the system conversion.", timeout=300, ) == 0