From 3ada0b2f65f2bb4375402df8b035c1bf6d36edf9 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Tue, 4 Feb 2020 09:57:44 +1000 Subject: win_uri: fix up tests (#67064) --- test/integration/targets/win_uri/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/targets/win_uri/tasks/main.yml b/test/integration/targets/win_uri/tasks/main.yml index 335148680f..d2ea71e994 100644 --- a/test/integration/targets/win_uri/tasks/main.yml +++ b/test/integration/targets/win_uri/tasks/main.yml @@ -67,7 +67,7 @@ - name: get request with return_content and dest win_uri: - url: https://{{httpbin_host}}/get + url: https://{{httpbin_host}}/base64/{{ '{"key":"value"}' | b64encode }} return_content: yes dest: '{{ remote_tmp_dir }}\get.json' register: get_request_with_dest @@ -90,7 +90,7 @@ - name: get request with return_content and dest (idempotent) win_uri: - url: https://{{httpbin_host}}/get + url: https://{{httpbin_host}}/base64/{{ '{"key":"value"}' | b64encode }} return_content: yes dest: '{{ remote_tmp_dir }}\get.json' register: get_request_with_dest_again -- cgit v1.2.1