From 5b4fbe2df53f6a1c757a3085cebe93879871d0d9 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 23 Mar 2023 14:25:59 -0700 Subject: [stable-2.9] Fix url lookup test to use test container (#80284). (#80290) (cherry picked from commit 054aa9215857f376ee4d387339e6b82bcc14b437) --- test/integration/targets/lookups/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/targets/lookups/tasks/main.yml b/test/integration/targets/lookups/tasks/main.yml index 5e723719ea..8dcf7097df 100644 --- a/test/integration/targets/lookups/tasks/main.yml +++ b/test/integration/targets/lookups/tasks/main.yml @@ -219,7 +219,7 @@ - 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: -- cgit v1.2.1