Francois Gouget : msvcp120/tests: Tweak two ok() messages and fix their spelling.

Alexandre Julliard julliard at winehq.org
Thu Nov 28 16:02:21 CST 2019


Module: wine
Branch: master
Commit: 842aa6bae74f79d470cb89a8afb984c4bd95e32b
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=842aa6bae74f79d470cb89a8afb984c4bd95e32b

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Nov 28 13:28:47 2019 +0100

msvcp120/tests: Tweak two ok() messages and fix their spelling.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msvcp120/tests/msvcp120.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcp120/tests/msvcp120.c b/dlls/msvcp120/tests/msvcp120.c
index d484cdd7ed..9c3f22a367 100644
--- a/dlls/msvcp120/tests/msvcp120.c
+++ b/dlls/msvcp120/tests/msvcp120.c
@@ -1444,7 +1444,7 @@ static void test_tr2_sys__Copy_file(void)
         ok(errno == 0xdeadbeef, "test_tr2_sys__Copy_file(): test %d errno expect 0xdeadbeef, got %d\n", i+1, errno);
         if(ret == ERROR_SUCCESS)
             ok(p_tr2_sys__File_size(tests[i].source) == p_tr2_sys__File_size(tests[i].dest),
-                    "test_tr2_sys__Copy_file(): test %d failed, two files' size are not equal\n", i+1);
+                    "test_tr2_sys__Copy_file(): test %d failed, mismatched file sizes\n", i+1);
     }
     ret = p_tr2_sys__Copy_file_wchar(testW, testW2, TRUE);
     ok(ret == ERROR_SUCCESS, "test_tr2_sys__Copy_file_wchar() expect ERROR_SUCCESS, got %d\n", ret);
@@ -1886,7 +1886,7 @@ static void test_tr2_sys__Link(void)
         ok(errno == 0xdeadbeef, "tr2_sys__Link(): test %d errno expect 0xdeadbeef, got %d\n", i+1, errno);
         if(ret == ERROR_SUCCESS)
             ok(p_tr2_sys__File_size(tests[i].existing_path) == p_tr2_sys__File_size(tests[i].new_path),
-                    "tr2_sys__Link(): test %d failed, two files' size are not equal\n", i+1);
+                    "tr2_sys__Link(): test %d failed, mismatched file sizes\n", i+1);
     }
 
     ok(DeleteFileA("f1"), "expect f1 to exist\n");




More information about the wine-cvs mailing list