msxml3/tests: Avoid winetest_strcmpW.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-11-29 13:57:51 +01:00
parent 65049191ab
commit f077f8b08d
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}