Commit c032eee8 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

wbemprox/tests: Avoid "misleading indentation" warnings.

parent bcc03c96
......@@ -1144,7 +1144,7 @@ static void test_query_semisync( IWbemServices *services )
count = 1;
obj = (void *)0xdeadbeef;
hr = IEnumWbemClassObject_Next( result, -1, 1, &obj, &count );
todo_wine
todo_wine
ok( hr == WBEM_E_INVALID_CLASS, "Unexpected hr %#x.\n", hr );
ok( count == 0, "Unexpected count %u.\n", count );
ok( obj == (void *)0xdeadbeef, "Got object %p\n", obj );
......
......@@ -214,11 +214,11 @@ static void test_IWbemContext(void)
ok(hr == S_OK, "Unexpected hr %#x.\n", hr);
hr = IWbemContext_Next(context, 0, &str, &var);
todo_wine
todo_wine
ok(hr == WBEM_E_UNEXPECTED, "Unexpected hr %#x.\n", hr);
hr = IWbemContext_BeginEnumeration(context, 0);
todo_wine
todo_wine
ok(hr == S_OK, "Unexpected hr %#x.\n", hr);
str = NULL;
......@@ -229,7 +229,7 @@ todo_wine {
SysFreeString(str);
}
hr = IWbemContext_EndEnumeration(context);
todo_wine
todo_wine
ok(hr == S_OK, "Unexpected hr %#x.\n", hr);
/* Overwrite */
......
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