Paul Vriens : shell32/tests: Compare instead of assign.
Module: wine Branch: master Commit: 3d8180a2fc022a598b2eb074fbdb51b92420a508 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3d8180a2fc022a598b2eb074fb... Author: Paul Vriens <Paul.Vriens.Wine(a)gmail.com> Date: Wed Oct 8 08:55:08 2008 +0200 shell32/tests: Compare instead of assign. --- dlls/shell32/tests/appbar.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shell32/tests/appbar.c b/dlls/shell32/tests/appbar.c index 9991fe2..af7c5f2 100644 --- a/dlls/shell32/tests/appbar.c +++ b/dlls/shell32/tests/appbar.c @@ -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);
participants (1)
-
Alexandre Julliard