Commit 89bc84a1 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

scrrun/tests: Ignore case in path names.

parent f905c7c0
...@@ -893,7 +893,7 @@ static void test_FolderCollection(void) ...@@ -893,7 +893,7 @@ static void test_FolderCollection(void)
hr = IFolder_get_Path(folder, &str); hr = IFolder_get_Path(folder, &str);
ok(hr == S_OK, "got 0x%08x\n", hr); 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); SysFreeString(str);
lstrcpyW(pathW, buffW); lstrcpyW(pathW, buffW);
......
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