Commit dcfba0a2 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

dinput/tests: Relax the mouse move count test.

It is prone to spurious failures and we don't really care about it being precise yet.
parent c98d0eaa
......@@ -1744,7 +1744,7 @@ static void test_hid_mouse(void)
ok( !res, "MsgWaitForMultipleObjects returned %#lx\n", res );
msg_wait_for_events( 0, NULL, 5 ); /* process pending messages */
todo_wine
ok( mouse_move_count == 1, "got mouse_move_count %u\n", mouse_move_count );
ok( mouse_move_count >= 1, "got mouse_move_count %u\n", mouse_move_count );
GetCursorPos( &pos );
todo_wine
......
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