Commit dc2306de authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

msxml3/tests: Fix some test failures on Win98/WinMe.

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