Dmitry Timoshkov (@dmitry) commented about dlls/user32/tests/class.c:
ok(res != 0, "unexpected class atom %#Ix\n", res); SetLastError(0xdeadbeef); res = SetClassWord(hwnd, GCW_ATOM, 2);
- todo_wine ok(res == 0, "SetClassLongPtrA returned %#Ix\n", res);
- todo_wine ok(GetLastError() == ERROR_INVALID_INDEX, "got error %lu\n", GetLastError());
- ok(res == 0, "SetClassLongPtrA returned %#Ix\n", res);
It's an existing typo (SetClassWord/SetClassLongPtrA), but since the lines are changed this could be fixed as well.