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
3241d845
Commit
3241d845
authored
Sep 05, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 05, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Fixed more tests on IE11.
parent
c205e680
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
http.c
dlls/wininet/tests/http.c
+1
-2
No files found.
dlls/wininet/tests/http.c
View file @
3241d845
...
...
@@ -4224,7 +4224,7 @@ static void test_cert_struct(HINTERNET req, const cert_struct_test_t *test)
ok
(
!
info
.
lpszSignatureAlgName
,
"lpszSignatureAlgName = %s
\n
"
,
info
.
lpszSignatureAlgName
);
ok
(
!
info
.
lpszEncryptionAlgName
,
"lpszEncryptionAlgName = %s
\n
"
,
info
.
lpszEncryptionAlgName
);
ok
(
!
info
.
lpszProtocolName
,
"lpszProtocolName = %s
\n
"
,
info
.
lpszProtocolName
);
ok
(
info
.
dwKeySize
==
128
,
"dwKeySize = %u
\n
"
,
info
.
dwKeySize
);
ok
(
info
.
dwKeySize
==
128
||
info
.
dwKeySize
==
256
,
"dwKeySize = %u
\n
"
,
info
.
dwKeySize
);
release_cert_info
(
&
info
);
}
...
...
@@ -4811,7 +4811,6 @@ static void test_user_agent_header(void)
ret
=
HttpQueryInfoA
(
req
,
HTTP_QUERY_USER_AGENT
|
HTTP_QUERY_FLAG_REQUEST_HEADERS
,
buffer
,
&
size
,
NULL
);
err
=
GetLastError
();
ok
(
ret
,
"HttpQueryInfo failed
\n
"
);
ok
(
err
==
ERROR_HTTP_HEADER_NOT_FOUND
,
"expected ERROR_HTTP_HEADER_NOT_FOUND, got %u
\n
"
,
err
);
InternetCloseHandle
(
req
);
...
...
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