@@ -34,9 +34,9 @@ public Task ResponseFormats_Kestrel_ContentLength(ServerType serverType, Runtime
34
34
return ResponseFormats ( serverType , runtimeFlavor , architecture , applicationBaseUrl , CheckContentLengthAsync ) ;
35
35
}
36
36
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/" ) ]
40
40
// https://github.com/aspnet/Helios/issues/148
41
41
// TODO: Chunks anyways [InlineData(ServerType.WebListener, RuntimeFlavor.Clr, RuntimeArchitecture.x86, "http://localhost:5073/")]
42
42
// https://github.com/aspnet/WebListener/issues/113
@@ -155,8 +155,8 @@ private static async Task CheckConnectionCloseAsync(HttpClient client, ILogger l
155
155
var response = await client . GetAsync ( "connectionclose" ) ;
156
156
responseText = await response . Content . ReadAsStringAsync ( ) ;
157
157
Assert . Equal ( "Connnection Close" , responseText ) ;
158
- Assert . Null ( response . Headers . TransferEncodingChunked ) ;
159
158
Assert . True ( response . Headers . ConnectionClose , "/connectionclose, closed?" ) ;
159
+ Assert . Null ( response . Headers . TransferEncodingChunked ) ;
160
160
Assert . Null ( GetContentLength ( response ) ) ;
161
161
}
162
162
catch ( XunitException )
0 commit comments