Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -300,12 +300,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
[SkipOnPlatform(TestPlatforms.Browser, "CookieContainer is not supported on Browser")]
public async Task GetAsyncWithRedirect_SetCookieContainer_CorrectCookiesSent()
{
if (UseVersion == HttpVersion30)
{
// [ActiveIssue("https://github.com/dotnet/runtime/issues/56870")]
return;
}

const string path1 = "/foo";
const string path2 = "/bar";
const string unusedPath = "/unused";
Expand Down Expand Up @@ -481,12 +475,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, serverUrl) =>
[SkipOnPlatform(TestPlatforms.Browser, "CookieContainer is not supported on Browser")]
public async Task GetAsync_Redirect_CookiesArePreserved()
{
if (UseVersion == HttpVersion30)
{
// [ActiveIssue("https://github.com/dotnet/runtime/issues/56870")]
return;
}

HttpClientHandler handler = CreateHttpClientHandler();

string loginPath = "/login/user";
Expand Down Expand Up @@ -617,12 +605,6 @@ await LoopbackServerFactory.CreateServerAsync(async (server, url) =>
[SkipOnPlatform(TestPlatforms.Browser, "CookieContainer is not supported on Browser")]
public async Task GetAsyncWithRedirect_ReceiveSetCookie_CookieSent()
{
if (UseVersion == HttpVersion30)
{
// [ActiveIssue("https://github.com/dotnet/runtime/issues/56870")]
return;
}

const string path1 = "/foo";
const string path2 = "/bar";

Expand Down
Loading