Paul Vriens : kernel32/tests: Fix a few typos.

Alexandre Julliard julliard at winehq.org
Fri Jun 13 05:11:25 CDT 2008


Module: wine
Branch: master
Commit: e7f5c45cf9e3d8e9cda02fab4bcc69ee7940024c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e7f5c45cf9e3d8e9cda02fab4bcc69ee7940024c

Author: Paul Vriens <paul.vriens.wine at gmail.com>
Date:   Fri Jun 13 11:37:28 2008 +0200

kernel32/tests: Fix a few typos.

---

 dlls/kernel32/tests/file.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/kernel32/tests/file.c b/dlls/kernel32/tests/file.c
index f73f104..48f57d5 100644
--- a/dlls/kernel32/tests/file.c
+++ b/dlls/kernel32/tests/file.c
@@ -1456,7 +1456,7 @@ static void test_FindFirstFileExA(void)
     ok(strcmp(search_results.cFileName, "..") == 0, "Second entry should be '..' is %s\n", search_results.cFileName);
 
     ok(FindNextFile(handle, &search_results), "Fetching third file failed\n");
-    ok(CHECK_NAME(search_results.cFileName), "Invalid thrid entry - %s\n", search_results.cFileName);
+    ok(CHECK_NAME(search_results.cFileName), "Invalid third entry - %s\n", search_results.cFileName);
 
     ok(FindNextFile(handle, &search_results), "Fetching fourth file failed\n");
     ok(CHECK_NAME(search_results.cFileName), "Invalid fourth entry - %s\n", search_results.cFileName);
@@ -1840,14 +1840,14 @@ static void test_overlapped(void)
     memset( &ov, 0,  sizeof ov );
     result = 1;
     r = GetOverlappedResult(0, &ov, &result, 0);
-    ok( r == TRUE, "should return false\n");
+    ok( r == TRUE, "should return true\n");
     ok( result == 0, "wrong result %u\n", result );
 
     result = 0;
     ov.Internal = 0;
     ov.InternalHigh = 0xabcd;
     r = GetOverlappedResult(0, &ov, &result, 0);
-    ok( r == TRUE, "should return false\n");
+    ok( r == TRUE, "should return true\n");
     ok( result == 0xabcd, "wrong result %u\n", result );
 
     SetLastError( 0xb00 );




More information about the wine-cvs mailing list