Commit f096b023 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

dxdiagn/tests: Add a trailing '\n' to an ok() call.

parent 381d73e4
......@@ -279,7 +279,7 @@ static void test_GetChildContainer(void)
ok(hr == S_OK,
"Expected IDxDiagContainer::GetChildContainer to return S_OK, got 0x%08x\n", hr);
if (SUCCEEDED(hr))
todo_wine ok(ptr != child, "Expected the two pointers (%p vs. %p) to be unequal", child, ptr);
todo_wine ok(ptr != child, "Expected the two pointers (%p vs. %p) to be unequal\n", child, ptr);
IDxDiagContainer_Release(ptr);
IDxDiagContainer_Release(child);
......
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