Skip to content
Snippets Groups Projects
Commit f077f8b0 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

msxml3/tests: Avoid winetest_strcmpW.

parent 65049191
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment