From c67298dcd4c91d188f9f93e487a14c6e9fee5bb2 Mon Sep 17 00:00:00 2001 From: Shannon Date: Fri, 29 Mar 2019 00:08:53 +1100 Subject: [PATCH] recommitting, the build server just died for some reason --- src/Umbraco.Tests/Services/PropertyValidationServiceTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Tests/Services/PropertyValidationServiceTests.cs b/src/Umbraco.Tests/Services/PropertyValidationServiceTests.cs index 6c3f308509..bfca80c9b7 100644 --- a/src/Umbraco.Tests/Services/PropertyValidationServiceTests.cs +++ b/src/Umbraco.Tests/Services/PropertyValidationServiceTests.cs @@ -124,7 +124,7 @@ namespace Umbraco.Tests.Services p3.SetValue("Hello", "en-US"); //ignored since this is variant var p4 = new Property(new PropertyType(dataType, "test4") { Mandatory = true, Variations = ContentVariation.Nothing }); p4.SetValue(null, null); //invalid - + var content = Mock.Of( x => x.Properties == new PropertyCollection(new[] { p1, p2, p3, p4 }));