mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Fix junos_facts test (#57065)
This commit fixes a non-passing junos_facts integration test, as it was using a non-ordered frozenset to assert its result.
This commit is contained in:
committed by
Paul Belanger
parent
486370a744
commit
0ada6b8d8d
@@ -354,7 +354,8 @@ def main():
|
||||
|
||||
if subset not in VALID_SUBSETS:
|
||||
module.fail_json(msg='Subset must be one of [%s], got %s' %
|
||||
(', '.join(VALID_SUBSETS), subset))
|
||||
(', '.join(sorted([subset for subset in
|
||||
VALID_SUBSETS])), subset))
|
||||
|
||||
if exclude:
|
||||
exclude_subsets.add(subset)
|
||||
|
||||
Reference in New Issue
Block a user