hnetcfg/tests: Ignore case when comparing filenames.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2018-05-10 14:56:00 +02:00 committed by Alexandre Julliard
parent a055b68fcf
commit 8e29f491c4
1 changed files with 1 additions and 1 deletions

View File

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