From 8e046a035bc0b5c513db978a2548c1899560d0b9 Mon Sep 17 00:00:00 2001 From: Stephen Halter Date: Fri, 14 Aug 2015 16:28:12 -0700 Subject: [PATCH] Enable ResponseFormats_Kestrel_Chunked test https://github.com/aspnet/KestrelHttpServer/issues/97 --- test/ServerComparison.FunctionalTests/ResponseTests.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/ServerComparison.FunctionalTests/ResponseTests.cs b/test/ServerComparison.FunctionalTests/ResponseTests.cs index 992c16d76a..f35f6b7305 100644 --- a/test/ServerComparison.FunctionalTests/ResponseTests.cs +++ b/test/ServerComparison.FunctionalTests/ResponseTests.cs @@ -59,9 +59,8 @@ namespace ServerComparison.FunctionalTests return ResponseFormats(serverType, runtimeFlavor, architecture, applicationBaseUrl, CheckChunkedAsync); } - // [Theory] - // TODO: Not implemented [InlineData(ServerType.Kestrel, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, "http://localhost:5075/")] - // https://github.com/aspnet/KestrelHttpServer/issues/97 + [Theory] + [InlineData(ServerType.Kestrel, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, "http://localhost:5075/")] public Task ResponseFormats_Kestrel_Chunked(ServerType serverType, RuntimeFlavor runtimeFlavor, RuntimeArchitecture architecture, string applicationBaseUrl) { return ResponseFormats(serverType, runtimeFlavor, architecture, applicationBaseUrl, CheckChunkedAsync);