Alfred Agrell (@Alcaro) commented about dlls/avifil32/tests/api.c:
hr = AVIFileOpenW(&avifile, fn, OF_CREATE, NULL); ok(hr == S_OK, "got %#lx.\n", hr); hr = AVIFileCreateStreamW(avifile, &stm, &si);
- todo_wine ok(hr == S_OK, "got %#lx.\n", hr);
- ok(hr == S_OK, "got %#lx.\n", hr); if (hr == S_OK)
Now that the ok is no longer todo, might as well remove this check.
Especially when the next commit adds eight different writes to that variable, so it's not even checking the right hr anymore.