On Mon, 12 Jul 2021 at 08:14, Ziqing Hui zhui@codeweavers.com wrote:
@@ -9703,7 +9703,6 @@ static void test_effect(BOOL d3d11) ok(hr == S_OK, "Failed to create effect, hr %#x.\n", hr);
hr = ID2D1Effect_QueryInterface(effect, &IID_ID2D1Image, (void **)&image_a);
- todo_wine ok(hr == S_OK, "Failed to get image interface, hr %#x.\n", hr); if (hr != S_OK) goto end;
Now that the todo_wine is removed, if "hr != S_OK", the test would fail, so there's no need to handle that.