user32: Fix a test of GetMouseMovePointsEx failing on platforms winxp and win2k3.
This commit is contained in:
parent
428ada3c8a
commit
ebbc1e781c
|
@ -768,7 +768,7 @@ static void test_GetMouseMovePointsEx(void)
|
|||
count = BUFLIM;
|
||||
retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, count, GMMP_USE_DISPLAY_POINTS);
|
||||
todo_wine {
|
||||
ok(retval == count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
|
||||
ok(retval <= count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
|
||||
ok(MYERROR == GetLastError(),
|
||||
"expected error %d, got %u\n", MYERROR, GetLastError());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue