From 2ddbadccef5ca0c57fe003c8fa004e80a653a49f Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Sat, 9 Jul 2016 13:58:20 +0200 Subject: [PATCH] explorerframe/tests: The width is between the RECT left and right fields. Signed-off-by: Michael Stefaniuc Signed-off-by: Alexandre Julliard --- dlls/explorerframe/tests/nstc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/explorerframe/tests/nstc.c b/dlls/explorerframe/tests/nstc.c index 83ee89237c9..80be883039b 100644 --- a/dlls/explorerframe/tests/nstc.c +++ b/dlls/explorerframe/tests/nstc.c @@ -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); -- 2.11.4.GIT