diff --git a/test/Microsoft.AspNetCore.Mvc.IntegrationTests/BodyValidationIntegrationTests.cs b/test/Microsoft.AspNetCore.Mvc.IntegrationTests/BodyValidationIntegrationTests.cs index a79d35b679..1f967fe98d 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(Skip = "https://github.com/aspnet/Mvc/issues/6058")] + [Fact] 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 23fdc7a6b8..2d505f5420 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(Skip = "https://github.com/aspnet/Mvc/issues/6058")] + [Fact] [ReplaceCulture] public void TryValidateModel_CollectionsModel_ReturnsErrorsForInvalidProperties() {