Andrew Nguyen : urlmon/tests: Fix CoInternetCompareUrl failure message typos.

Alexandre Julliard julliard at winehq.org
Thu May 20 11:03:03 CDT 2010


Module: wine
Branch: master
Commit: 0b3eac9227c8cb664962cf10624fef0ce3c54137
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0b3eac9227c8cb664962cf10624fef0ce3c54137

Author: Andrew Nguyen <anguyen at codeweavers.com>
Date:   Wed May 19 22:26:02 2010 -0500

urlmon/tests: Fix CoInternetCompareUrl failure message typos.

---

 dlls/urlmon/tests/misc.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/urlmon/tests/misc.c b/dlls/urlmon/tests/misc.c
index f9c14a4..66d2c7e 100644
--- a/dlls/urlmon/tests/misc.c
+++ b/dlls/urlmon/tests/misc.c
@@ -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 {




More information about the wine-cvs mailing list