Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit e330aa5

Browse files
author
Lakshmi Priya Sekar
committed
Mark failing tests with issue.
1 parent a3affa1 commit e330aa5

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Authentication.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ public static IEnumerable<object[]> Authentication_TestData()
8585
yield return new object[] { "Basic something, Digest something", false };
8686

8787
// Add digest tests fail on CurlHandler.
88+
// TODO: #27113: Fix failing authentication test cases on different httpclienthandlers.
8889
if (PlatformDetection.IsWindows)
8990
{
9091
yield return new object[] { "Digest realm=\"testrealm\" nonce=\"testnonce\"", false };

src/System.Net.Http/tests/FunctionalTests/SocketsHttpHandlerTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ public async void SocketsHttpHandler_Authentication_Succeeds(string authenticate
155155
public static IEnumerable<object[]> Authentication_SocketsHttpHandler_TestData()
156156
{
157157
// These test cases pass on SocketsHttpHandler, fail everywhere else.
158+
// TODO: #27113: Fix failing authentication test cases on different httpclienthandlers.
158159
yield return new object[] { "Basic realm=\"testrealm1\" basic realm=\"testrealm1\"", true };
159160
yield return new object[] { "Basic something digest something", true };
160161
yield return new object[] { "Digest ", false };

0 commit comments

Comments
 (0)