Change url so that we don't test https in the tests for file perms

This commit is contained in:
Toshio Kuratomi 2016-03-20 08:49:40 -07:00
parent 9d2fe2fb2c
commit 6824f3a7cc

View file

@ -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