scrrun/tests: Ignore case in path names.

This commit is contained in:
Detlef Riekenberg 2014-11-19 22:08:12 +01:00 committed by Alexandre Julliard
parent f905c7c07a
commit 89bc84a153
1 changed files with 1 additions and 1 deletions

View File

@ -893,7 +893,7 @@ static void test_FolderCollection(void)
hr = IFolder_get_Path(folder, &str);
ok(hr == S_OK, "got 0x%08x\n", hr);
ok(!lstrcmpW(buffW, str), "got %s, expected %s\n", wine_dbgstr_w(str), wine_dbgstr_w(buffW));
ok(!lstrcmpiW(buffW, str), "got %s, expected %s\n", wine_dbgstr_w(str), wine_dbgstr_w(buffW));
SysFreeString(str);
lstrcpyW(pathW, buffW);