From f7e1a98b24a0190272471df3c1b38357fc1f07fb Mon Sep 17 00:00:00 2001 From: Chris R Date: Thu, 14 Nov 2019 11:01:19 -0800 Subject: [PATCH] Skip broken TempDataDictionary tests #17102 --- src/Mvc/Mvc.ViewFeatures/test/TempDataDictionaryTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mvc/Mvc.ViewFeatures/test/TempDataDictionaryTest.cs b/src/Mvc/Mvc.ViewFeatures/test/TempDataDictionaryTest.cs index b9c1b6c813..082af78fe7 100644 --- a/src/Mvc/Mvc.ViewFeatures/test/TempDataDictionaryTest.cs +++ b/src/Mvc/Mvc.ViewFeatures/test/TempDataDictionaryTest.cs @@ -143,7 +143,7 @@ namespace Microsoft.AspNetCore.Mvc.ViewFeatures Assert.Same(item, value); } - [Fact] + [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/17102")] public void TempData_LoadAndSaveAreCaseInsensitive() { // Arrange @@ -163,7 +163,7 @@ namespace Microsoft.AspNetCore.Mvc.ViewFeatures Assert.True(tempData.ContainsKey("bar")); } - [Fact] + [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/17102")] public void TempData_RemovalOfKeysAreCaseInsensitive() { var tempData = new TempDataDictionary(new DefaultHttpContext(), new NullTempDataProvider());