summaryrefslogtreecommitdiff
path: root/test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml
diff options
context:
space:
mode:
authorAdrien Vergé <adrienverge@gmail.com>2016-04-18 16:47:38 +0200
committerMatt Clay <matt@mystile.com>2016-11-11 14:50:57 -0800
commit0e834fc9e4ace93a5e47647fb3544d775977d90c (patch)
treead27e0acb1dd75fb28c9d9701ff9bf4df262a277 /test/integration/targets/hash/roles/test_hash_behavior/tasks/main.yml
parent8874c1dc39e0901ea958cfaab8206ee7f4e3c6e9 (diff)
downloadansible-0e834fc9e4ace93a5e47647fb3544d775977d90c.tar.gz
Fix cosmetic problems in YAML source
This change corrects problems reported by the `yamllint` linter. Since key duplication problems were removed in 4d48711, this commit mainly fixes trailing spaces and extra empty lines at beginning/end of files.
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"
-