Module: wine Branch: master Commit: a07e0c5a4a40979844ef97497099dab3ebf52798 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a07e0c5a4a40979844ef974970...
Author: Qian Hong qhong@codeweavers.com Date: Tue Oct 8 11:39:30 2013 +0800
user32/tests: Fixed typo in comments.
---
dlls/user32/tests/winstation.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/user32/tests/winstation.c b/dlls/user32/tests/winstation.c index 1804345..d6a4879 100644 --- a/dlls/user32/tests/winstation.c +++ b/dlls/user32/tests/winstation.c @@ -526,7 +526,7 @@ todo_wine ok(GetLastError() == 0xdeadbeef, "unexpected last error %08x\n", GetLastError()); ok(ret == 1, "unexpected return count %d\n", ret);
- /* Set thread desktop to the new desktop, SendInput should failed. */ + /* Set thread desktop to the new desktop, SendInput should fail. */ new_desk = CreateDesktopA("new_desk", NULL, NULL, 0, DESKTOP_ALL_ACCESS, NULL); ok(new_desk != NULL, "CreateDesktop failed!\n"); ret = SetThreadDesktop(new_desk); @@ -573,7 +573,7 @@ todo_wine ok(GetLastError() == 0xdeadbeef, "unexpected last error %08x\n", GetLastError()); ok(ret == 1, "unexpected return count %d\n", ret);
- /* Switch input desktop to the new desktop, SendInput should failed. */ + /* Switch input desktop to the new desktop, SendInput should fail. */ ret = SwitchDesktop(new_desk); ok(ret, "SwitchDesktop failed!\n"); input_desk = OpenInputDesktop(0, FALSE, DESKTOP_ALL_ACCESS);