explorerframe/tests: The width is between the RECT left and right fields.

Signed-off-by: Michael Stefaniuc <mstefani@redhat.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Michael Stefaniuc 2016-07-09 13:58:20 +02:00 committed by Alexandre Julliard
parent 6eb70eea1b
commit 2ddbadccef
1 changed files with 1 additions and 1 deletions

View File

@ -1584,7 +1584,7 @@ static void test_basics(void)
hr = INameSpaceTreeControl_GetItemRect(pnstc, psitestdir, &rc);
ok(hr == S_OK, "Got 0x%08x\n", hr);
ok(rc.top != rc.bottom, "Got 0 height.\n");
ok(rc.left != rc.bottom, "Got 0 width.\n");
ok(rc.left != rc.right, "Got 0 width.\n");
height = 0;
hwnd_tv = get_treeview_hwnd(pnstc);