msxml3/tests: Fix test on win 8.

This commit is contained in:
Huw Davies 2014-05-14 08:02:25 +01:00 committed by Alexandre Julliard
parent 0fb88f8d01
commit 305db0f65b
1 changed files with 2 additions and 2 deletions

View File

@ -1519,10 +1519,10 @@ static void test_get(void)
if (!cache) return;
hr = IXMLDOMSchemaCollection2_get(cache, NULL, NULL);
EXPECT_HR(hr, E_NOTIMPL);
ok(hr == E_NOTIMPL || hr == E_POINTER /* win8 */, "got %08x\n", hr);
hr = IXMLDOMSchemaCollection2_get(cache, _bstr_("uri"), &node);
ok(hr == E_NOTIMPL || hr == E_POINTER /* win8 */, "got %08x\n", hr);
EXPECT_HR(hr, E_NOTIMPL);
IXMLDOMSchemaCollection2_Release(cache);