Commit b45ec460 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

ntdll/tests: Fix the typos.

parent 1cb70eb0
...@@ -2243,7 +2243,7 @@ todo_wine ...@@ -2243,7 +2243,7 @@ todo_wine
ok(iob.Information == 4, "expected 4, got %lu\n", iob.Information); ok(iob.Information == 4, "expected 4, got %lu\n", iob.Information);
ret = WaitForSingleObject(hfile, 3000); ret = WaitForSingleObject(hfile, 3000);
ok(ret == WAIT_OBJECT_0, "GetOverlappedResult error %d\n", ret); ok(ret == WAIT_OBJECT_0, "WaitForSingleObject error %d\n", ret);
iob.Status = -1; iob.Status = -1;
iob.Information = -1; iob.Information = -1;
...@@ -2254,7 +2254,7 @@ todo_wine ...@@ -2254,7 +2254,7 @@ todo_wine
ok(iob.Information == sizeof(contents), "expected sizeof(contents), got %lu\n", iob.Information); ok(iob.Information == sizeof(contents), "expected sizeof(contents), got %lu\n", iob.Information);
ret = WaitForSingleObject(hfile, 3000); ret = WaitForSingleObject(hfile, 3000);
ok(ret == WAIT_OBJECT_0, "GetOverlappedResult error %d\n", ret); ok(ret == WAIT_OBJECT_0, "WaitForSingleObject error %d\n", ret);
ok(!memcmp(contents, buf, sizeof(contents) - 4), "file contents mismatch\n"); ok(!memcmp(contents, buf, sizeof(contents) - 4), "file contents mismatch\n");
ok(!memcmp(buf + sizeof(contents) - 4, "DCBA", 4), "file contents mismatch\n"); ok(!memcmp(buf + sizeof(contents) - 4, "DCBA", 4), "file contents mismatch\n");
......
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