Zebediah Figura : dinput/tests: Remove a no longer needed workaround.
Module: wine Branch: master Commit: 58abb3518cc8fdff261c33e237d1ae5e0130ec40 URL: http://source.winehq.org/git/wine.git/?a=commit;h=58abb3518cc8fdff261c33e237... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Fri Nov 3 17:26:58 2017 -0500 dinput/tests: Remove a no longer needed workaround. This was fixed by 41ce4a01583d552a976cb921d2991a043e0363e4. Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/dinput/tests/mouse.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/dinput/tests/mouse.c b/dlls/dinput/tests/mouse.c index 262ed0e..a6c981c 100644 --- a/dlls/dinput/tests/mouse.c +++ b/dlls/dinput/tests/mouse.c @@ -136,8 +136,6 @@ static void test_acquire(IDirectInputA *pDI, HWND hwnd) hr = IDirectInputDevice_GetDeviceState(pMouse, sizeof(m_state), &m_state); ok(hr == DIERR_NOTACQUIRED, "GetDeviceState() should have failed: %08x\n", hr); - /* Workaround so we can test other things. Remove when Wine is fixed */ - IDirectInputDevice_Unacquire(pMouse); hr = IDirectInputDevice_Acquire(pMouse); ok(hr == DIERR_OTHERAPPHASPRIO, "Acquire() should have failed: %08x\n", hr);
participants (1)
-
Alexandre Julliard