user32/tests: Fix a typo.

This commit is contained in:
Paul Vriens 2009-10-23 18:00:59 +02:00 committed by Alexandre Julliard
parent 05765a0b0c
commit eaec876917
1 changed files with 1 additions and 1 deletions
dlls/user32/tests

View File

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