msxml3/tests: Avoid winetest_strcmpW.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
65049191ab
commit
f077f8b08d
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue