Module: wine Branch: master Commit: eaec876917d5a759ea7e1f3e8304b8cb107f7184 URL: http://source.winehq.org/git/wine.git/?a=commit;h=eaec876917d5a759ea7e1f3e83...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Fri Oct 23 18:00:59 2009 +0200
user32/tests: Fix a typo.
---
dlls/user32/tests/win.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c index 1c9103a..0bd6fbf 100644 --- a/dlls/user32/tests/win.c +++ b/dlls/user32/tests/win.c @@ -607,7 +607,7 @@ static DWORD CALLBACK enum_thread( void *arg ) count = 0; ret = EnumThreadWindows( GetCurrentThreadId(), enum_proc, (LPARAM)&count ); ok( !ret, "EnumThreadWindows should have returned FALSE\n" ); - ok( count == 3, "count should be 1 got %d\n", count ); + ok( count == 3, "count should be 3 got %d\n", count );
if (hwnd[2]) DestroyWindow(hwnd[2]); DestroyWindow(hwnd[1]);