From bc365e2d0111145b443b9d55c583e362ae03178f Mon Sep 17 00:00:00 2001 From: beeankha Date: Fri, 6 Aug 2021 10:13:06 -0400 Subject: [PATCH] Point to the correct name for AAP within collections --- awx_collection/plugins/module_utils/controller_api.py | 2 +- awx_collection/test/awx/test_module_utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/awx_collection/plugins/module_utils/controller_api.py b/awx_collection/plugins/module_utils/controller_api.py index e32a6001f3..aefe0d5d01 100644 --- a/awx_collection/plugins/module_utils/controller_api.py +++ b/awx_collection/plugins/module_utils/controller_api.py @@ -21,7 +21,7 @@ class ControllerAPIModule(ControllerModule): # Those values can be found in awx/api/generics.py line 204 collection_to_version = { 'awx': 'AWX', - 'controller': 'Red Hat Automation Platform Controller', + 'controller': 'Red Hat Ansible Automation Platform', } session = None IDENTITY_FIELDS = {'users': 'username', 'workflow_job_template_nodes': 'identifier', 'instances': 'hostname'} diff --git a/awx_collection/test/awx/test_module_utils.py b/awx_collection/test/awx/test_module_utils.py index b1a8f29267..d5be56d6cc 100644 --- a/awx_collection/test/awx/test_module_utils.py +++ b/awx_collection/test/awx/test_module_utils.py @@ -10,7 +10,7 @@ from requests.models import Response from unittest import mock awx_name = 'AWX' -controller_name = 'Red Hat Automation Platform Controller' +controller_name = 'Red Hat Ansible Automation Platform' ping_version = '1.2.3'