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

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

parent a73175fd
......@@ -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);
......
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