@@ -34,9 +34,9 @@ public Task ResponseFormats_Kestrel_ContentLength(ServerType serverType, Runtime
3434 return ResponseFormats ( serverType , runtimeFlavor , architecture , applicationBaseUrl , CheckContentLengthAsync ) ;
3535 }
3636
37- // [ConditionalTheory]
38- // [OSSkipCondition(OperatingSystems.Linux | OperatingSystems.MacOSX)]
39- // TODO: Not supported [InlineData(ServerType.IISExpress, RuntimeFlavor.CoreClr, RuntimeArchitecture.x86, "http://localhost:5071/")]
37+ [ ConditionalTheory ]
38+ [ OSSkipCondition ( OperatingSystems . Linux | OperatingSystems . MacOSX ) ]
39+ [ InlineData ( ServerType . IISExpress , RuntimeFlavor . CoreClr , RuntimeArchitecture . x86 , "http://localhost:5071/" ) ]
4040 // https://github.com/aspnet/Helios/issues/148
4141 // TODO: Chunks anyways [InlineData(ServerType.WebListener, RuntimeFlavor.Clr, RuntimeArchitecture.x86, "http://localhost:5073/")]
4242 // https://github.com/aspnet/WebListener/issues/113
@@ -155,8 +155,8 @@ private static async Task CheckConnectionCloseAsync(HttpClient client, ILogger l
155155 var response = await client . GetAsync ( "connectionclose" ) ;
156156 responseText = await response . Content . ReadAsStringAsync ( ) ;
157157 Assert . Equal ( "Connnection Close" , responseText ) ;
158- Assert . Null ( response . Headers . TransferEncodingChunked ) ;
159158 Assert . True ( response . Headers . ConnectionClose , "/connectionclose, closed?" ) ;
159+ Assert . Null ( response . Headers . TransferEncodingChunked ) ;
160160 Assert . Null ( GetContentLength ( response ) ) ;
161161 }
162162 catch ( XunitException )
0 commit comments