From 29a298a6172b0f7dd66ca06b3aaaaf103788b84e Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 30 Jul 2025 15:54:44 -0400 Subject: [PATCH] test fix to avoid permissions issue (#85598) --- test/integration/targets/copy/tasks/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/targets/copy/tasks/tests.yml b/test/integration/targets/copy/tasks/tests.yml index 2b6b5c6ff60..44067ae319f 100644 --- a/test/integration/targets/copy/tasks/tests.yml +++ b/test/integration/targets/copy/tasks/tests.yml @@ -2450,8 +2450,8 @@ - name: Verify atime and mtime update on content change (same partition) vars: - remote_file: "{{ remote_tmp_dir }}/foo.txt" - ansible_remote_tmp: "{{ remote_tmp_dir }}" + remote_file: "/tmp/foo.txt" + ansible_remote_tmp: "/tmp" block: - name: Create a dest file shell: "echo Test content > {{ remote_file }}"