Commit 008ceb66 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

riched20/tests: Fix test on 64-bit.

parent 2a1ae98b
......@@ -525,8 +525,11 @@ static void test_ITextSelection_GetText(void)
hres = ITextSelection_GetText(txtSel, &bstr);
ok(hres == CO_E_RELEASED, "got 0x%08x\n", hres);
hres = ITextSelection_GetText(txtSel, NULL);
ok(hres == CO_E_RELEASED, "got 0x%08x\n", hres);
if (!is64bit)
{
hres = ITextSelection_GetText(txtSel, NULL);
ok(hres == CO_E_RELEASED, "got 0x%08x\n", hres);
}
ITextSelection_Release(txtSel);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment