From 58abb3518cc8fdff261c33e237d1ae5e0130ec40 Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Fri, 3 Nov 2017 17:26:58 -0500 Subject: [PATCH] dinput/tests: Remove a no longer needed workaround. This was fixed by 41ce4a01583d552a976cb921d2991a043e0363e4. Signed-off-by: Zebediah Figura Signed-off-by: Alexandre Julliard --- 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 262ed0ee7c1..a6c981c7db0 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);