Commit 8e29f491 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

hnetcfg/tests: Ignore case when comparing filenames.

parent a055b68f
......@@ -141,7 +141,7 @@ static void test_NetFwAuthorizedApplication(void)
hr = INetFwAuthorizedApplication_get_ProcessImageFileName(app, &bstr);
ok(hr == S_OK, "got: %08x\n", hr);
ok(!lstrcmpW(bstr,image), "got: %s\n", wine_dbgstr_w(bstr));
ok(!lstrcmpiW(bstr,image), "got: %s\n", wine_dbgstr_w(bstr));
SysFreeString( bstr );
SysFreeString( image );
......
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