scrrun/tests: Ignore case in path names.
This commit is contained in:
parent
f905c7c07a
commit
89bc84a153
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue