summaryrefslogtreecommitdiff
path: root/test/integration/targets/win_fetch
diff options
context:
space:
mode:
authorJordan Borean <jborean93@gmail.com>2017-12-06 09:21:34 +1000
committeransibot <ansibot@users.noreply.github.com>2017-12-05 18:21:34 -0500
commita55496553a608ec113ce55bfb66c8eeb052ec25a (patch)
tree9cd6156d86f3e0c4a428993479dd618c07df0c98 /test/integration/targets/win_fetch
parentf5471b3dcbb4167e59f1d43e40e925bd8adbdca0 (diff)
downloadansible-a55496553a608ec113ce55bfb66c8eeb052ec25a.tar.gz
fix for win_fetch tests (#33601)
Diffstat (limited to 'test/integration/targets/win_fetch')
-rw-r--r--test/integration/targets/win_fetch/tasks/main.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/integration/targets/win_fetch/tasks/main.yml b/test/integration/targets/win_fetch/tasks/main.yml
index 12b28ba84c..2849782127 100644
--- a/test/integration/targets/win_fetch/tasks/main.yml
+++ b/test/integration/targets/win_fetch/tasks/main.yml
@@ -46,7 +46,7 @@
that:
- "fetch_small_stat.stat.exists"
- "fetch_small_stat.stat.isreg"
- - "fetch_small_stat.stat.md5 == fetch_small.md5sum"
+ - "fetch_small_stat.stat.checksum == fetch_small.checksum"
- name: fetch the same small file
fetch: src="C:/Windows/win.ini" dest={{ host_output_dir }}
@@ -75,7 +75,7 @@
that:
- "fetch_flat_stat.stat.exists"
- "fetch_flat_stat.stat.isreg"
- - "fetch_flat_stat.stat.md5 == fetch_flat.md5sum"
+ - "fetch_flat_stat.stat.checksum == fetch_flat.checksum"
#- name: fetch a small file to flat directory (without trailing slash)
# fetch: src="C:/Windows/win.ini" dest="{{ host_output_dir }}" flat=yes
@@ -104,7 +104,7 @@
that:
- "fetch_large_stat.stat.exists"
- "fetch_large_stat.stat.isreg"
- - "fetch_large_stat.stat.md5 == fetch_large.md5sum"
+ - "fetch_large_stat.stat.checksum == fetch_large.checksum"
- name: fetch a large binary file again
fetch: src="C:/Windows/explorer.exe" dest={{ host_output_dir }}
@@ -133,7 +133,7 @@
that:
- "fetch_small_bs_stat.stat.exists"
- "fetch_small_bs_stat.stat.isreg"
- - "fetch_small_bs_stat.stat.md5 == fetch_small_bs.md5sum"
+ - "fetch_small_bs_stat.stat.checksum == fetch_small_bs.checksum"
- name: attempt to fetch a non-existent file - do not fail on missing
fetch: src="C:/this_file_should_not_exist.txt" dest={{ host_output_dir }}