summaryrefslogtreecommitdiff
path: root/test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml')
-rw-r--r--test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml b/test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml
index 463141edd3..5912898596 100644
--- a/test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml
+++ b/test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml
@@ -19,13 +19,13 @@
- name: get the hash behavior env setting
shell: env | grep ^ANSIBLE_HASH_BEHAVIOUR'=' | cut -f2- -d'='
register: hash_behavior
- # This only works with the local connection. The way this test is run means the
+ # This only works with the local connection. The way this test is run means the
connection: local
delegate_to: localhost
- name: debug hash behavior result
- debug: var=hash_behavior.stdout
+ debug: var=hash_behavior.stdout
- name: assert hash behavior is merge or replace
assert:
@@ -39,4 +39,3 @@
assert:
that:
- "hash_behavior.stdout == 'merge' and test_hash == merged_hash or hash_behavior.stdout == 'replace' and test_hash == replaced_hash"
-