diff --git a/test/Microsoft.AspNetCore.Mvc.IntegrationTests/BodyValidationIntegrationTests.cs b/test/Microsoft.AspNetCore.Mvc.IntegrationTests/BodyValidationIntegrationTests.cs index 1f967fe98d..a79d35b679 100644 --- a/test/Microsoft.AspNetCore.Mvc.IntegrationTests/BodyValidationIntegrationTests.cs +++ b/test/Microsoft.AspNetCore.Mvc.IntegrationTests/BodyValidationIntegrationTests.cs @@ -93,7 +93,7 @@ namespace Microsoft.AspNetCore.Mvc.IntegrationTests Assert.Equal(2, products.Count()); } - [Fact] + [Fact(Skip = "https://github.com/aspnet/Mvc/issues/6058")] public async Task ModelMetadataTypeAttribute_InvalidPropertiesAndSubPropertiesOnBaseClass_HasModelStateErrors() { // Arrange diff --git a/test/Microsoft.AspNetCore.Mvc.IntegrationTests/TryValidateModelIntegrationTest.cs b/test/Microsoft.AspNetCore.Mvc.IntegrationTests/TryValidateModelIntegrationTest.cs index 2d505f5420..23fdc7a6b8 100644 --- a/test/Microsoft.AspNetCore.Mvc.IntegrationTests/TryValidateModelIntegrationTest.cs +++ b/test/Microsoft.AspNetCore.Mvc.IntegrationTests/TryValidateModelIntegrationTest.cs @@ -75,7 +75,7 @@ namespace Microsoft.AspNetCore.Mvc.IntegrationTests Assert.Empty(modelStateErrors); } - [Fact] + [Fact(Skip = "https://github.com/aspnet/Mvc/issues/6058")] [ReplaceCulture] public void TryValidateModel_CollectionsModel_ReturnsErrorsForInvalidProperties() {