urlmon/tests: Fix two ok() trailing '\n's.
This commit is contained in:
parent
a73175fd11
commit
a4f4fd2a77
|
@ -294,12 +294,12 @@ static void test_CoInternetCreateZoneManager(void)
|
|||
return;
|
||||
|
||||
hr = IInternetZoneManager_QueryInterface(zonemgr, &IID_IUnknown, (void **) &punk);
|
||||
ok(SUCCEEDED(hr), "got 0x%x with %p (expected Success)n", hr, punk);
|
||||
ok(SUCCEEDED(hr), "got 0x%x with %p (expected Success)\n", hr, punk);
|
||||
if (punk)
|
||||
IUnknown_Release(punk);
|
||||
|
||||
hr = IInternetZoneManager_QueryInterface(zonemgr, &IID_IInternetZoneManager, (void **) &punk);
|
||||
ok(SUCCEEDED(hr), "got 0x%x with %p (expected Success)n", hr, punk);
|
||||
ok(SUCCEEDED(hr), "got 0x%x with %p (expected Success)\n", hr, punk);
|
||||
if (punk)
|
||||
IUnknown_Release(punk);
|
||||
|
||||
|
|
Loading…
Reference in New Issue