shell32/tests: Compare instead of assign.

This commit is contained in:
Paul Vriens 2008-10-08 08:55:08 +02:00 committed by Alexandre Julliard
parent 59f8cd533d
commit 3d8180a2fc
1 changed files with 1 additions and 1 deletions

View File

@ -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);