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:50:55 -0700
commit050c1b46b87e53cb74c8af6aaa9e57a9ebdb8306 (patch)
treeb4b010a6f673704febabcdd0dccca6ad47351b56
parenta420b4952f401eb3d8988e9d4b127048577e32c1 (diff)
downloadansible-050c1b46b87e53cb74c8af6aaa9e57a9ebdb8306.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 843c9b056e..c3e52129c8 100644
--- a/test/integration/roles/test_get_url/tasks/main.yml
+++ b/test/integration/roles/test_get_url/tasks/main.yml
@@ -95,7 +95,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
@@ -112,7 +112,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