summaryrefslogtreecommitdiff
path: root/test/integration/targets/copy
diff options
context:
space:
mode:
authorBrian Coca <bcoca@users.noreply.github.com>2017-04-21 16:07:38 -0400
committerGitHub <noreply@github.com>2017-04-21 16:07:38 -0400
commit4594bee65ae2123061e2f262503310a9a57a5a59 (patch)
treee5801846635f9295d02db726688e02c84b0e1391 /test/integration/targets/copy
parent3358abcf49d41deeec3139dc5527e5aad6d3eb49 (diff)
downloadansible-4594bee65ae2123061e2f262503310a9a57a5a59.tar.gz
keep unsafe .. unsafe (#23742)
* keep unsafe .. unsafe fixes #23734, which was broken in previous fix that allowed non string types to be templated use new 'is_template' function vs bastardizing others refactored clean_data to allow for arbitrary data structures to clean fixed/removed some tests * deal with complex data for is_template * typos
Diffstat (limited to 'test/integration/targets/copy')
-rw-r--r--test/integration/targets/copy/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/copy/tasks/main.yml b/test/integration/targets/copy/tasks/main.yml
index 7e799e2d95..096ae5481c 100644
--- a/test/integration/targets/copy/tasks/main.yml
+++ b/test/integration/targets/copy/tasks/main.yml
@@ -157,7 +157,7 @@
- name: assert recursive copied directories mode
assert:
that:
- - "{{item.stat.mode}} == 0700"
+ - "item.stat.mode == '0700'"
with_items: "{{dir_stats.results}}"