urlmon/tests: Fix two ok() trailing '\n's.

oldstable
Francois Gouget 2009-07-09 09:51:58 +02:00 committed by Alexandre Julliard
parent a73175fd11
commit a4f4fd2a77
1 changed files with 2 additions and 2 deletions

View File

@ -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);