shell32/tests: Compare instead of assign.
This commit is contained in:
parent
59f8cd533d
commit
3d8180a2fc
|
@ -335,7 +335,7 @@ static void test_setpos(void)
|
|||
|
||||
do_events_until(got_expected_bottom);
|
||||
|
||||
ok(windows[1].allocated_rect.bottom = expected_bottom, "windows[1]'s bottom is %i, expected %i\n", windows[1].allocated_rect.bottom, expected_bottom);
|
||||
ok(windows[1].allocated_rect.bottom == expected_bottom, "windows[1]'s bottom is %i, expected %i\n", windows[1].allocated_rect.bottom, expected_bottom);
|
||||
|
||||
test_window_rects(1, 2);
|
||||
|
||||
|
|
Loading…
Reference in New Issue