Module: wine Branch: master Commit: b7ad9c87b52cf2415cf0ad6e75f649218774f25c URL: http://source.winehq.org/git/wine.git/?a=commit;h=b7ad9c87b52cf2415cf0ad6e75...
Author: Francois Gouget fgouget@free.fr Date: Sun Dec 28 10:36:46 2008 +0100
shell32/tests: Add a trailing '\n' to ok() calls.
---
dlls/shell32/tests/shlfileop.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c index 3eb45d6..37ec523 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");