theforeman / foreman-ansible-modules

Ansible modules for interacting with the Foreman API and various plugin APIs such as Katello
GNU General Public License v3.0
149 stars 166 forks source link

Fix content_view_version_cleanup_role version listing in test #1754

Closed Griffin-Sullivan closed 4 months ago

Griffin-Sullivan commented 4 months ago

remaining_cvs.resources[1].versions|map(attribute='version')|list was returning ['5.0', '4.0', '3.0'] which is != to ['3.0', '4.0', '5.0']. Let's use difference() and compare them like we would with a set.