diff --git a/tests/integration/targets/synchronize/tasks/main.yml b/tests/integration/targets/synchronize/tasks/main.yml index 039c67a..8f98282 100644 --- a/tests/integration/targets/synchronize/tasks/main.yml +++ b/tests/integration/targets/synchronize/tasks/main.yml @@ -339,27 +339,27 @@ - stat_result_b.stat.exists == True - stat_result_b.stat.checksum == '2aae6c35c94fcfb415dbe95f408b9ce91ee846ed' -- name: synchronize files with quiet option - synchronize: +- name: Synchronize files with quiet option + ansible.posix.synchronize: src: '{{ output_dir }}/foo.txt' dest: '{{ output_dir }}/foo.result' quiet: true register: sync_result - name: Assertion for synchronize with quiet option - assert: + ansible.builtin.assert: that: - - '''files/directories have been synchronized'' in sync_result.msg' + - '''files/directories have been synchronized'' in sync_result.msg' - name: Cleanup file: state: absent path: '{{ output_dir }}/{{ item }}' loop: - - foo.result - - bar.result + - foo.result + - bar.result -- name: synchronize files without quiet option +- name: Synchronize files without quiet option synchronize: src: '{{ output_dir }}/foo.txt' dest: '{{ output_dir }}/foo.result' @@ -368,7 +368,7 @@ - name: Assertion for synchronize without quiet option assert: that: - - '''files/directories have been synchronized'' not in sync_result.msg' + - '''files/directories have been synchronized'' not in sync_result.msg' - name: Cleanup ansible.builtin.file: