[PATCH] hnetcfg/tests: Ignore case when comparing filenames.
10 May
2018
10 May
'18
12:56 p.m.
Signed-off-by: Hans Leidekker <hans(a)codeweavers.com> --- dlls/hnetcfg/tests/policy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/hnetcfg/tests/policy.c b/dlls/hnetcfg/tests/policy.c index 4d70818293..4ee19d8db4 100644 --- a/dlls/hnetcfg/tests/policy.c +++ b/dlls/hnetcfg/tests/policy.c @@ -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 ); -- 2.11.0
2780
Age (days ago)
2780
Last active (days ago)
0 comments
1 participants
participants (1)
-
Hans Leidekker