From 72c37efe4630a4d48301e0013aee3924b986e9c4 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 18 Aug 2022 01:34:20 -0400 Subject: [PATCH] Check correct destinations in nautilus/move_file_into Signed-off-by: Adam Williamson --- tests/applications/nautilus/move_file_into.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/applications/nautilus/move_file_into.pm b/tests/applications/nautilus/move_file_into.pm index 2769bcb4..ffd70be3 100644 --- a/tests/applications/nautilus/move_file_into.pm +++ b/tests/applications/nautilus/move_file_into.pm @@ -47,8 +47,8 @@ sub run { # Verify that the new file does not exist in the original location. assert_script_run("! ls /home/test/Documents/markdown.md", fail_message => 'The test file has not been deleted from its original location.'); # And that it now exists in the new locations. - assert_script_run("ls /home/test/Downloads/markdown.md", fail_message => 'The test file has not been found in the expected location.', quiet => '0'); - assert_script_run("ls /home/test/Downloads/markdown.md", fail_message => 'The test file has not been found in the excpected location.', quiet => '0'); + assert_script_run("ls /home/test/Downloads/markdown.md", fail_message => 'The test file has not been found in the expected location (copy to).', quiet => '0'); + assert_script_run("ls /home/test/Videos/markdown.md", fail_message => 'The test file has not been found in the expected location (move to).', quiet => '0'); } sub test_flags {