summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2016-03-20 08:49:40 -0700
committerToshio Kuratomi <toshio@fedoraproject.org>2016-03-20 08:49:40 -0700
commit6824f3a7ccfd5be432b3a8dc68626815951d5b4c (patch)
tree07863c83940229913c031af30dbf73d5c2d205e4
parent9d2fe2fb2c6117cb31c4751adacdd2f2ca3556a2 (diff)
downloadansible-6824f3a7ccfd5be432b3a8dc68626815951d5b4c.tar.gz
Change url so that we don't test https in the tests for file perms
-rw-r--r--test/integration/roles/test_get_url/tasks/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/roles/test_get_url/tasks/main.yml b/test/integration/roles/test_get_url/tasks/main.yml
index 2038f28f81..61b26f08f6 100644
--- a/test/integration/roles/test_get_url/tasks/main.yml
+++ b/test/integration/roles/test_get_url/tasks/main.yml
@@ -153,7 +153,7 @@
- name: Test that setting file modes work
get_url:
- url: 'http://www.ansible.com/'
+ url: 'http://httpbin.org/'
dest: '{{ output_dir }}/test'
mode: '0707'
register: result
@@ -170,7 +170,7 @@
- name: Test that setting file modes on an already downlaoded file work
get_url:
- url: 'http://www.ansible.com/'
+ url: 'http://httpbin.org/'
dest: '{{ output_dir }}/test'
mode: '0070'
register: result