diff --git a/.github/tests/configure_controller.yml b/.github/tests/configure_controller.yml index 62dad3b2b..ad27c2b3c 100644 --- a/.github/tests/configure_controller.yml +++ b/.github/tests/configure_controller.yml @@ -132,13 +132,13 @@ - name: "Error out on empty list" ansible.builtin.set_fact: - error_empty_diff: "{{ lookup('redhat_cop.controller_configuration.controller_object_diff', api_list=controller_api_results, compare_list=differential_test_items, warn_on_empty_api=false) }}" + error_empty_diff: "{{ lookup('controller_object_diff', api_list=controller_api_results, compare_list=differential_test_items, warn_on_empty_api=false) }}" ignore_errors: true register: error_results - name: "Warn out on empty list" ansible.builtin.set_fact: - warn_empty_diff: "{{ lookup('redhat_cop.controller_configuration.controller_object_diff', api_list=controller_api_results, compare_list=differential_test_items) }}" + warn_empty_diff: "{{ lookup('controller_object_diff', api_list=controller_api_results, compare_list=differential_test_items) }}" register: warn_results - name: "Assert that the empty list error correctly" diff --git a/.github/tests/tasks/differential.yml b/.github/tests/tasks/differential.yml index 40c443e2f..261f51419 100644 --- a/.github/tests/tasks/differential.yml +++ b/.github/tests/tasks/differential.yml @@ -5,7 +5,7 @@ - name: "Find the difference between what is on the Controller versus curated list of {{ differential_item.name }}" ansible.builtin.set_fact: - set_absent_diff: "{{ lookup('redhat_cop.controller_configuration.controller_object_diff', api_list=controller_api_results, compare_list=differential_item.differential_test_items, with_present=differential_item.with_present) }}" + set_absent_diff: "{{ lookup('controller_object_diff', api_list=controller_api_results, compare_list=differential_item.differential_test_items, with_present=differential_item.with_present) }}" - name: Display set_absent_diff ansible.builtin.debug: