summaryrefslogtreecommitdiff
path: root/test/integration/targets/copy
diff options
context:
space:
mode:
authorBrian Coca <bcoca@users.noreply.github.com>2019-05-08 10:45:45 -0400
committerGitHub <noreply@github.com>2019-05-08 10:45:45 -0400
commitdeae5b1bce9f434e67127ef0c8a46ed1d1f5544b (patch)
tree2b9fd82bb09e15196121db2582262cfa7cc3918a /test/integration/targets/copy
parentcd95843ea5f1bff40225b0430cfbb379cbe53661 (diff)
downloadansible-deae5b1bce9f434e67127ef0c8a46ed1d1f5544b.tar.gz
remove deprecated get_md5 from stat (#55659)
* remove deprecated get_md5 from stat fixes #55309 * removed get_md5 from tests involving stat * keep get_md5 but hide it * rst it * ammended comment * ws * added ignore for hidden md5
Diffstat (limited to 'test/integration/targets/copy')
-rw-r--r--test/integration/targets/copy/tasks/tests.yml7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/integration/targets/copy/tasks/tests.yml b/test/integration/targets/copy/tasks/tests.yml
index fb6889e11e..9d6edaf48e 100644
--- a/test/integration/targets/copy/tasks/tests.yml
+++ b/test/integration/targets/copy/tasks/tests.yml
@@ -77,7 +77,6 @@
- name: Check the stat results of the file
stat:
path: "{{ remote_file }}"
- get_md5: yes
register: stat_results
- debug:
@@ -94,12 +93,6 @@
- "stat_results.stat.issock == false"
- "stat_results.stat.checksum == ('foo.txt\n'|hash('sha1'))"
-- name: Verify that the legacy md5sum is correct
- assert:
- that:
- - "stat_results.stat.md5 == ('foo.txt\n'|hash('md5'))"
- when: ansible_fips|bool != True
-
- name: Overwrite the file via same means
copy:
src: foo.txt