mirror of
https://github.com/reactos/wine.git
synced 2024-11-27 05:30:30 +00:00
comctl32/tests: Fix a test failure on older comctl32.
This commit is contained in:
parent
a9a3a8e155
commit
1d0e02b63e
@ -667,7 +667,8 @@ static void test_wm_set_get_text(void)
|
||||
|
||||
ret = SendMessage(hWnd, WM_SETTEXT, 0, (LPARAM)a_str);
|
||||
ok(CB_ERR == ret ||
|
||||
broken(1 == ret), /* comctl32 <= 4.72 */
|
||||
broken(0 == ret) || /* comctl32 <= 4.72 */
|
||||
broken(1 == ret), /* comctl32 <= 4.70 */
|
||||
"Expected CB_ERR, got %ld\n", ret);
|
||||
|
||||
buff[0] = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user