Skip to content
Snippets Groups Projects
Commit 8e29f491 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard
Browse files

hnetcfg/tests: Ignore case when comparing filenames.

parent a055b68f
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment