From 67f48064ced9ac9c2917d369ffc7d1866d03c84d Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Mon, 11 Dec 2017 15:38:30 -0800 Subject: [PATCH] Skip additional flaky tests. See aspnet/Mvc#7122 --- .../HtmlGenerationTest.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.AspNetCore.Mvc.FunctionalTests/HtmlGenerationTest.cs b/test/Microsoft.AspNetCore.Mvc.FunctionalTests/HtmlGenerationTest.cs index d2d6a1349d..3a78be5346 100644 --- a/test/Microsoft.AspNetCore.Mvc.FunctionalTests/HtmlGenerationTest.cs +++ b/test/Microsoft.AspNetCore.Mvc.FunctionalTests/HtmlGenerationTest.cs @@ -255,7 +255,8 @@ namespace Microsoft.AspNetCore.Mvc.FunctionalTests #endif } - [Fact] + // See https://github.com/aspnet/Mvc/issues/7122 + [Fact(Skip = "This test is flaky, and would require product changes to fix it. Issue #7122")] public async Task CacheTagHelper_CanCachePortionsOfViewsPartialViewsAndViewComponents() { // Arrange @@ -440,7 +441,8 @@ namespace Microsoft.AspNetCore.Mvc.FunctionalTests Assert.Equal(expected2, response4.Trim()); } - [Fact] + // See https://github.com/aspnet/Mvc/issues/7122 + [Fact(Skip = "This test is flaky, and would require product changes to fix it. Issue #7122")] public async Task CacheTagHelper_BubblesExpirationOfNestedTagHelpers() { // Arrange & Act - 1