Commit e7f5c45c authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

kernel32/tests: Fix a few typos.

parent 63f68ade
...@@ -1456,7 +1456,7 @@ static void test_FindFirstFileExA(void) ...@@ -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(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(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(FindNextFile(handle, &search_results), "Fetching fourth file failed\n");
ok(CHECK_NAME(search_results.cFileName), "Invalid fourth entry - %s\n", search_results.cFileName); ok(CHECK_NAME(search_results.cFileName), "Invalid fourth entry - %s\n", search_results.cFileName);
...@@ -1840,14 +1840,14 @@ static void test_overlapped(void) ...@@ -1840,14 +1840,14 @@ static void test_overlapped(void)
memset( &ov, 0, sizeof ov ); memset( &ov, 0, sizeof ov );
result = 1; result = 1;
r = GetOverlappedResult(0, &ov, &result, 0); 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 ); ok( result == 0, "wrong result %u\n", result );
result = 0; result = 0;
ov.Internal = 0; ov.Internal = 0;
ov.InternalHigh = 0xabcd; ov.InternalHigh = 0xabcd;
r = GetOverlappedResult(0, &ov, &result, 0); 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 ); ok( result == 0xabcd, "wrong result %u\n", result );
SetLastError( 0xb00 ); SetLastError( 0xb00 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment