summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-03-23 14:26:29 -0700
committerGitHub <noreply@github.com>2023-03-23 14:26:29 -0700
commit7bb078bd740fba8ad43cc69e18fc8aeb4719180a (patch)
tree385448c0a1dc1804eb4fb06b57046e05dc53e57b
parent1b981d3fbaf88a55eb3b14befecfe5e48d543fa8 (diff)
downloadansible-7bb078bd740fba8ad43cc69e18fc8aeb4719180a.tar.gz
[stable-2.14] Fix url lookup test to use test container (#80284) (#80287)
(cherry picked from commit 054aa9215857f376ee4d387339e6b82bcc14b437)
-rw-r--r--test/integration/targets/lookup_url/tasks/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/lookup_url/tasks/main.yml b/test/integration/targets/lookup_url/tasks/main.yml
index a7de5063bb..2fb227ad8a 100644
--- a/test/integration/targets/lookup_url/tasks/main.yml
+++ b/test/integration/targets/lookup_url/tasks/main.yml
@@ -1,11 +1,11 @@
- name: Test that retrieving a url works
set_fact:
- web_data: "{{ lookup('url', 'https://gist.githubusercontent.com/abadger/9858c22712f62a8effff/raw/43dd47ea691c90a5fa7827892c70241913351963/test') }}"
+ web_data: "{{ lookup('url', 'https://{{ httpbin_host }}/get?one') }}"
- name: Assert that the url was retrieved
assert:
that:
- - "'one' in web_data"
+ - "'one' in web_data.args"
- name: Test that retrieving a url with invalid cert fails
set_fact: