xmllite/tests: There is no need to initialize OLE.

oldstable
Dmitry Timoshkov 2014-02-10 12:43:54 +09:00 committed by Alexandre Julliard
parent 42e681e31d
commit ce894b9fc6
2 changed files with 0 additions and 20 deletions

View File

@ -1671,16 +1671,8 @@ static void test_read_attribute(void)
START_TEST(reader)
{
HRESULT r;
r = CoInitialize( NULL );
ok( r == S_OK, "failed to init com\n");
if (!init_pointers())
{
CoUninitialize();
return;
}
test_reader_create();
test_readerinput();
@ -1697,6 +1689,4 @@ START_TEST(reader)
test_read_pending();
test_readvaluechunk();
test_read_xmldeclaration();
CoUninitialize();
}

View File

@ -70,18 +70,8 @@ static BOOL init_pointers(void)
START_TEST(writer)
{
HRESULT r;
r = CoInitialize( NULL );
ok( r == S_OK, "failed to init com\n");
if (!init_pointers())
{
CoUninitialize();
return;
}
test_writer_create();
CoUninitialize();
}