Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
372b5e15
Commit
372b5e15
authored
Aug 30, 2021
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi/tests: Fix some ASCII / ANSI mixups in ok() messages.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ab8b99da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
url.c
dlls/shlwapi/tests/url.c
+3
-3
No files found.
dlls/shlwapi/tests/url.c
View file @
372b5e15
...
...
@@ -668,7 +668,7 @@ static void test_url_part(const char* szUrl, DWORD dwPart, DWORD dwFlags, const
wszConvertedPart
=
GetWideString
(
szPart
);
ok
(
lstrcmpW
(
wszPart
,
wszConvertedPart
)
==
0
,
"Strings didn't match between a
sci
i and unicode UrlGetPart!
\n
"
);
"Strings didn't match between a
ns
i and unicode UrlGetPart!
\n
"
);
FreeWideString
(
wszConvertedPart
);
}
...
...
@@ -860,7 +860,7 @@ static void test_url_canonicalize(int index, const char *szUrl, DWORD dwFlags, H
wszConvertedUrl
=
GetWideString
(
szReturnUrl
);
ok
(
lstrcmpW
(
wszReturnUrl
,
wszConvertedUrl
)
==
0
,
"Strings didn't match between a
sci
i and unicode UrlCanonicalize, index %d!
\n
"
,
index
);
"Strings didn't match between a
ns
i and unicode UrlCanonicalize, index %d!
\n
"
,
index
);
FreeWideString
(
wszConvertedUrl
);
}
...
...
@@ -1284,7 +1284,7 @@ static void test_url_combine(const char *szUrl1, const char *szUrl2, DWORD dwFla
ok
(
dwSize
==
dwExpectLen
,
"Got length %d, expected %d
\n
"
,
dwSize
,
dwExpectLen
);
if
(
SUCCEEDED
(
hr
))
{
wszConvertedUrl
=
GetWideString
(
szReturnUrl
);
ok
(
lstrcmpW
(
wszReturnUrl
,
wszConvertedUrl
)
==
0
,
"Strings didn't match between a
sci
i and unicode UrlCombine!
\n
"
);
ok
(
lstrcmpW
(
wszReturnUrl
,
wszConvertedUrl
)
==
0
,
"Strings didn't match between a
ns
i and unicode UrlCombine!
\n
"
);
FreeWideString
(
wszConvertedUrl
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment