Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3b7fb23c
Commit
3b7fb23c
authored
Sep 13, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 13, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: When a test fails, print the bad value.
parent
8fff969c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+2
-2
No files found.
dlls/mshtml/tests/htmldoc.c
View file @
3b7fb23c
...
...
@@ -1620,7 +1620,7 @@ static HRESULT WINAPI InPlaceUIWindow_SetActiveObject(IOleInPlaceFrame *iface,
if
(
expect_InPlaceUIWindow_SetActiveObject_active
)
{
ok
(
pActiveObject
!=
NULL
,
"pActiveObject = NULL
\n
"
);
if
(
pActiveObject
&&
is_english
())
ok
(
!
lstrcmpW
(
wszHTML_Document
,
pszObjName
),
"
pszObjName !=
\"
HTML Document
\"\n
"
);
ok
(
!
lstrcmpW
(
wszHTML_Document
,
pszObjName
),
"
%s !=
\"
HTML Document
\"\n
"
,
wine_dbgstr_w
(
pszObjName
)
);
}
else
{
ok
(
pActiveObject
==
NULL
,
"pActiveObject=%p, expected NULL
\n
"
,
pActiveObject
);
...
...
@@ -1640,7 +1640,7 @@ static HRESULT WINAPI InPlaceFrame_SetActiveObject(IOleInPlaceFrame *iface,
CHECK_EXPECT2
(
SetActiveObject
);
if
(
pActiveObject
&&
is_english
())
ok
(
!
lstrcmpW
(
wszHTML_Document
,
pszObjName
),
"
pszObjName !=
\"
HTML Document
\"\n
"
);
ok
(
!
lstrcmpW
(
wszHTML_Document
,
pszObjName
),
"
%s !=
\"
HTML Document
\"\n
"
,
wine_dbgstr_w
(
pszObjName
)
);
}
else
{
CHECK_EXPECT
(
SetActiveObject_null
);
...
...
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