From 7448964388d8e71f55260a09556b52aeca56f7eb Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Wed, 17 Apr 2019 21:46:27 -0700 Subject: [PATCH] Mark mvc test as flaky (#9489) --- src/Mvc/test/Mvc.FunctionalTests/FlushPointTest.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Mvc/test/Mvc.FunctionalTests/FlushPointTest.cs b/src/Mvc/test/Mvc.FunctionalTests/FlushPointTest.cs index f98f327c8e..cb8c605a22 100644 --- a/src/Mvc/test/Mvc.FunctionalTests/FlushPointTest.cs +++ b/src/Mvc/test/Mvc.FunctionalTests/FlushPointTest.cs @@ -3,6 +3,8 @@ using System.Net.Http; using System.Threading.Tasks; +using Microsoft.AspNetCore.Testing; +using Microsoft.AspNetCore.Testing.xunit; using Xunit; namespace Microsoft.AspNetCore.Mvc.FunctionalTests @@ -36,6 +38,7 @@ RenderBody content } [Fact] + [Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/2300", FlakyOn.All)] public async Task FlushFollowedByLargeContent() { // Arrange @@ -50,6 +53,7 @@ RenderBody content } [Fact] + [Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/2300", FlakyOn.All)] public async Task FlushInvokedInComponent() { var expected = new string('a', 1024 * 1024);