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

This commit is contained in:
Francois Gouget 2010-08-24 10:01:27 +02:00 committed by Alexandre Julliard
parent 1aa51f56d7
commit dc6428f350

View file

@ -1324,7 +1324,7 @@ static void test_basics(void)
psia = (void*)0xdeadbeef;
hr = INameSpaceTreeControl_GetSelectedItems(pnstc, &psia);
ok(hr == E_FAIL, "Got 0x%08x\n", hr);
ok(psia == (void*)0xdeadbeef, "Got %p", psia);
ok(psia == (void*)0xdeadbeef, "Got %p\n", psia);
hr = INameSpaceTreeControl_AppendRoot(pnstc, psitestdir2, SHCONTF_FOLDERS, 0, NULL);
ok(hr == S_OK, "Got (0x%08x)\n", hr);