Commit 0b3eac92 authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

urlmon/tests: Fix CoInternetCompareUrl failure message typos.

parent e92cca8d
...@@ -385,13 +385,13 @@ static void test_CoInternetCompareUrl(void) ...@@ -385,13 +385,13 @@ static void test_CoInternetCompareUrl(void)
} }
hres = pCoInternetCompareUrl(url1, url1, 0); hres = pCoInternetCompareUrl(url1, url1, 0);
ok(hres == S_OK, "CoInternetParseUrl failed: %08x\n", hres); ok(hres == S_OK, "CoInternetCompareUrl failed: %08x\n", hres);
hres = pCoInternetCompareUrl(url1, url3, 0); hres = pCoInternetCompareUrl(url1, url3, 0);
ok(hres == S_FALSE, "CoInternetParseUrl failed: %08x\n", hres); ok(hres == S_FALSE, "CoInternetCompareUrl failed: %08x\n", hres);
hres = pCoInternetCompareUrl(url3, url1, 0); hres = pCoInternetCompareUrl(url3, url1, 0);
ok(hres == S_FALSE, "CoInternetParseUrl failed: %08x\n", hres); ok(hres == S_FALSE, "CoInternetCompareUrl failed: %08x\n", hres);
} }
static const struct { static const struct {
......
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