Module: wine Branch: master Commit: 42b10069253b4a17e90a792cb890b48be49326c1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=42b10069253b4a17e90a792cb8...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sun Oct 31 19:15:05 2010 +0100
comctl32: Fix test description in test_hittest.
---
dlls/comctl32/tests/listview.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/comctl32/tests/listview.c b/dlls/comctl32/tests/listview.c index d249af8..0223167 100644 --- a/dlls/comctl32/tests/listview.c +++ b/dlls/comctl32/tests/listview.c @@ -3025,7 +3025,7 @@ static void test_hittest(void) horiz = LOWORD(r); vert = HIWORD(r); ok(bounds.bottom - bounds.top == vert, - "Horizontal spacing inconsistent (%d != %d)\n", bounds.bottom - bounds.top, vert); + "Vertical spacing inconsistent (%d != %d)\n", bounds.bottom - bounds.top, vert); r = SendMessage(hwnd, LVM_GETITEMPOSITION, 0, (LPARAM)&pos); expect(TRUE, r);