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
4c89a83a
Commit
4c89a83a
authored
Mar 05, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comcat/tests: Add a '\n' to a pair of ok() calls.
parent
53bcd3ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
comcat.c
dlls/comcat/tests/comcat.c
+2
-2
No files found.
dlls/comcat/tests/comcat.c
View file @
4c89a83a
...
...
@@ -104,7 +104,7 @@ static void do_enum(void)
ok_ole_success
(
hr
,
"ICatInformation_EnumClassesOfCategories"
);
hr
=
IEnumGUID_Next
(
pIEnum
,
1
,
the_guid
,
&
fetched
);
ok
(
hr
==
S_FALSE
,
"Expected S_FALSE, got 0x%08x"
,
hr
);
ok
(
hr
==
S_FALSE
,
"Expected S_FALSE, got 0x%08x
\n
"
,
hr
);
ok
(
fetched
==
0
,
"Fetched wrong number of guids %u
\n
"
,
fetched
);
IEnumGUID_Release
(
pIEnum
);
...
...
@@ -114,7 +114,7 @@ static void do_enum(void)
ok_ole_success
(
hr
,
"ICatInformation_EnumClassesOfCategories"
);
hr
=
IEnumGUID_Next
(
pIEnum
,
1
,
the_guid
,
&
fetched
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got 0x%08x"
,
hr
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got 0x%08x
\n
"
,
hr
);
ok
(
fetched
==
1
,
"Fetched wrong number of guids %u
\n
"
,
fetched
);
ok
(
IsEqualGUID
(
the_guid
,
&
wanted_guid
),
"Guids do not match
\n
"
);
...
...
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