Commit b488a67b authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

scrrun/tests: Use case insensitive compare for filenames.

parent 1ebbfb1a
......@@ -621,7 +621,7 @@ static void test_GetFile(void)
hr = IFile_get_Path(file, &str);
ok(hr == S_OK, "got 0x%08x\n", hr);
ok(!lstrcmpW(str, pathW), "got %s\n", wine_dbgstr_w(str));
ok(!lstrcmpiW(str, pathW), "got %s\n", wine_dbgstr_w(str));
SysFreeString(str);
#define FILE_ATTR_MASK (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | \
......
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