From f78cdcd2c59cf38bda841d6f12cfab9d8b39f753 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Tue, 5 Feb 2019 05:38:04 +1000 Subject: [PATCH] test win_setup - make py3 compatible (#51693) --- test/integration/targets/win_setup/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/targets/win_setup/tasks/main.yml b/test/integration/targets/win_setup/tasks/main.yml index 92f9a234445..a81a00f1ae2 100644 --- a/test/integration/targets/win_setup/tasks/main.yml +++ b/test/integration/targets/win_setup/tasks/main.yml @@ -92,7 +92,7 @@ - setup_result.ansible_facts.gather_subset is defined - setup_result.ansible_facts.gather_subset[0] == '!all' - setup_result.ansible_facts.gather_subset[1] == '!min' - - setup_result.ansible_facts.keys() | union(['gather_subset','module_setup']) | length == 2 + - setup_result.ansible_facts.keys() | list | union(['gather_subset','module_setup']) | length == 2 - name: test gather_subset "!all,!min,interfaces" with list setup: @@ -117,7 +117,7 @@ - setup_result.ansible_facts.ansible_interfaces[0].interface_name - setup_result.ansible_facts.ansible_interfaces[0].connection_name - setup_result.ansible_facts.ansible_interfaces[0].interface_index - - setup_result.ansible_facts.keys() | union(['ansible_interfaces','gather_subset','module_setup']) | length == 3 + - setup_result.ansible_facts.keys() | list | union(['ansible_interfaces','gather_subset','module_setup']) | length == 3 - name: test gather_subset "!all,!min,bogus" with list setup: @@ -136,6 +136,6 @@ - setup_result.ansible_facts.gather_subset is defined - setup_result.ansible_facts.gather_subset[0] == '!all' - setup_result.ansible_facts.gather_subset[1] == '!min' - - setup_result.ansible_facts.keys() | union(['gather_subset','module_setup']) | length == 2 + - setup_result.ansible_facts.keys() | list | union(['gather_subset','module_setup']) | length == 2 - setup_result.warnings | length == 1 - setup_result.warnings[0] | regex_search('bogus')