From b7ad9c87b52cf2415cf0ad6e75f649218774f25c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 28 Dec 2008 10:36:46 +0100 Subject: [PATCH] shell32/tests: Add a trailing '\n' to ok() calls. --- dlls/shell32/tests/shlfileop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c index 3eb45d60bb2..37ec5233f2b 100644 --- a/dlls/shell32/tests/shlfileop.c +++ b/dlls/shell32/tests/shlfileop.c @@ -717,7 +717,7 @@ static void test_copy(void) { /* Vista and W2K8 (broken or new behavior ?) */ ok(file_exists("test6.txt\\test1.txt"), "The file is not copied - many files " - "are specified as a target"); + "are specified as a target\n"); DeleteFileA("test6.txt\\test1.txt"); DeleteFileA("test6.txt\\test2.txt"); RemoveDirectoryA("test6.txt\\test4.txt"); @@ -750,9 +750,9 @@ static void test_copy(void) { /* Vista and W2K8 (broken or new behavior ?) */ ok(file_exists("test6.txt\\test1.txt"), "The file is not copied - many files " - "are specified as a target"); + "are specified as a target\n"); ok(file_exists("test7.txt\\test2.txt"), "The file is not copied - many files " - "are specified as a target"); + "are specified as a target\n"); DeleteFileA("test6.txt\\test1.txt"); DeleteFileA("test7.txt\\test2.txt"); RemoveDirectoryA("test6.txt");