diff options
author | Matt Clay <matt@mystile.com> | 2023-11-03 00:12:13 +0100 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2024-01-17 19:26:30 +0100 |
commit | 30169c76ded9194b6b47ff274e4ba6e5a16df8ea (patch) | |
tree | 69af579d84efd4b6b1885f63b40cd98dd5df8469 /test/integration/targets/service/tasks | |
parent | default svn URL to 127.0.0.1 for subversion integration tests (#82551) (diff) | |
download | ansible-30169c76ded9194b6b47ff274e4ba6e5a16df8ea.tar.xz ansible-30169c76ded9194b6b47ff274e4ba6e5a16df8ea.zip |
Replace Unicode no-break spaces with ASCII spaces
Diffstat (limited to 'test/integration/targets/service/tasks')
-rw-r--r-- | test/integration/targets/service/tasks/main.yml | 2 | ||||
-rw-r--r-- | test/integration/targets/service/tasks/upstart_cleanup.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/service/tasks/main.yml b/test/integration/targets/service/tasks/main.yml index 4fc2ddfe32..7a4ecda5e7 100644 --- a/test/integration/targets/service/tasks/main.yml +++ b/test/integration/targets/service/tasks/main.yml @@ -46,7 +46,7 @@ msg: 'ansible_service_mgr: {{ ansible_service_mgr }}' - name: setup test service script - include_tasks: '{{ service_type }}_setup.yml' + include_tasks: '{{ service_type }}_setup.yml' - name: execute tests import_tasks: tests.yml diff --git a/test/integration/targets/service/tasks/upstart_cleanup.yml b/test/integration/targets/service/tasks/upstart_cleanup.yml index 683fb104ab..fa418fe231 100644 --- a/test/integration/targets/service/tasks/upstart_cleanup.yml +++ b/test/integration/targets/service/tasks/upstart_cleanup.yml @@ -11,7 +11,7 @@ loop: '{{ upstart_files }}' - name: assert that upstart init files were removed - raw: 'test -e {{ item }}' + raw: 'test -e {{ item }}' loop: '{{ upstart_files }}' register: file_exists failed_when: file_exists is not failed |