Commit ce894b9f authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

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

parent 42e681e3
......@@ -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();
}
......@@ -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();
}
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