urlmon/tests: Fix CoInternetCompareUrl failure message typos.

This commit is contained in:
Andrew Nguyen 2010-05-19 22:26:02 -05:00 committed by Alexandre Julliard
parent e92cca8df6
commit 0b3eac9227
1 changed files with 3 additions and 3 deletions

View File

@ -385,13 +385,13 @@ static void test_CoInternetCompareUrl(void)
}
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);
ok(hres == S_FALSE, "CoInternetParseUrl failed: %08x\n", hres);
ok(hres == S_FALSE, "CoInternetCompareUrl failed: %08x\n", hres);
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 {