shlwapi/tests: Fix another test on Vista.
This commit is contained in:
parent
f88a3c569e
commit
99deb5ca2c
|
@ -810,10 +810,8 @@ static void test_PathCanonicalizeA(void)
|
||||||
ok(!res, "Expected failure\n");
|
ok(!res, "Expected failure\n");
|
||||||
ok(GetLastError() == ERROR_INVALID_PARAMETER,
|
ok(GetLastError() == ERROR_INVALID_PARAMETER,
|
||||||
"Expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
|
"Expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
|
||||||
todo_wine
|
ok(dest[0] == 0 || !lstrcmp(dest, "test"),
|
||||||
{
|
"Expected either an empty string (Vista) or test, got %s\n", dest);
|
||||||
ok(!lstrcmp(dest, "test"), "Expected test, got %s\n", dest);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* try an empty source */
|
/* try an empty source */
|
||||||
lstrcpy(dest, "test");
|
lstrcpy(dest, "test");
|
||||||
|
|
Loading…
Reference in New Issue