summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authors-hertel <shertel@redhat.com>2017-12-08 12:47:51 -0500
committerToshio Kuratomi <a.badger@gmail.com>2017-12-08 09:54:11 -0800
commita6368b99232b82ab69fe61153c24641d84e88b32 (patch)
tree1ed270151ff817750d30cdc240db60f4fe1bc9c2
parentaf125f40671bfdef8d1304fc9b1fb09066eca0df (diff)
downloadansible-temp-staging-post-2.3.3.tar.gz
loop doesn't exist in 2.4temp-staging-post-2.3.3
(cherry picked from commit 6a6ae0cedeb58db5ab7990a3b1be87196123962c)
-rw-r--r--test/integration/targets/environment/test_environment.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/integration/targets/environment/test_environment.yml b/test/integration/targets/environment/test_environment.yml
index f8e49ac8d0..9fa3207fb9 100644
--- a/test/integration/targets/environment/test_environment.yml
+++ b/test/integration/targets/environment/test_environment.yml
@@ -82,7 +82,7 @@
tasks:
- name: verify foo==outer
command: /bin/echo $foo
- loop:
+ with_items:
- 1
register: test_foo
@@ -95,7 +95,7 @@
environment:
foo: in_task
command: /bin/echo $foo
- loop:
+ with_items:
- 1
register: test_foo
@@ -106,7 +106,7 @@
- name: test that the outer env var is set appropriately still
command: /bin/echo $foo
- loop:
+ with_items:
- 1
register: test_foo
@@ -121,7 +121,7 @@
block:
- name: test the environment is set in the block
command: /bin/echo $foo
- loop:
+ with_items:
- 1
register: test_foo
@@ -134,7 +134,7 @@
environment:
foo: in_block_in_task
command: /bin/echo $foo
- loop:
+ with_items:
- 1
register: test_foo
@@ -145,7 +145,7 @@
- name: test the environment var is set to the parent value
command: /bin/echo $foo
- loop:
+ with_items:
- 1
register: test_foo
@@ -156,7 +156,7 @@
- name: test the env var foo has the initial value
command: /bin/echo $foo
- loop:
+ with_items:
- 1
register: test_foo