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());