Commit f077f8b0 authored by Alexandre Julliard's avatar Alexandre Julliard

msxml3/tests: Avoid winetest_strcmpW.

parent 65049191
......@@ -983,7 +983,7 @@ static void test_collection_content(void)
content[i] = bstr;
for (j = 0; j < i; ++j)
ok(winetest_strcmpW(content[j], bstr), "got duplicate entry\n");
ok(wcscmp(content[j], bstr), "got duplicate entry\n");
}
for (i = 0; i < 3; ++i)
......@@ -1001,7 +1001,7 @@ static void test_collection_content(void)
ok(bstr != NULL && *bstr, "expected non-empty string\n");
for (j = 0; j < i; ++j)
ok(winetest_strcmpW(content[j], bstr), "got duplicate entry\n");
ok(wcscmp(content[j], bstr), "got duplicate entry\n");
content[i] = bstr;
}
......
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