Skip to content

Commit

Permalink
Disable failing WinHttpHandler HTTP/2 test (#34011)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephentoub committed Mar 24, 2020
1 parent f02c9c2 commit 7c1ae8d
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,12 @@ public async Task GetAsyncWithRedirect_SetCookieContainer_CorrectCookiesSent()
[MemberData(nameof(CookieNamesValuesAndUseCookies))]
public async Task GetAsync_ReceiveSetCookieHeader_CookieAdded(string cookieName, string cookieValue, bool useCookies)
{
if (UseVersion.Major == 2)
{
// [ActiveIssue("https://github.com/dotnet/runtime/issues/33930")]
return;
}

await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
{
HttpClientHandler handler = CreateHttpClientHandler();
Expand Down

0 comments on commit 7c1ae8d

Please sign in to comment.