From 3d2dae075d2bd61ee73064caac6fb097f6f422de Mon Sep 17 00:00:00 2001 From: Nikolaj Date: Mon, 30 Aug 2021 10:57:32 +0200 Subject: [PATCH] Remove notification registration for ValueEditorCacheRefresher --- .../Umbraco.Infrastructure/Services/ContentServiceTests.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ContentServiceTests.cs b/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ContentServiceTests.cs index 75b2e62bf9..d10e269fad 100644 --- a/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ContentServiceTests.cs +++ b/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ContentServiceTests.cs @@ -81,9 +81,7 @@ namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Services protected override void CustomTestSetup(IUmbracoBuilder builder) => builder .AddNotificationHandler() .AddNotificationHandler() - .AddNotificationHandler() - .AddNotificationHandler() - .AddNotificationHandler(); + .AddNotificationHandler(); [TearDown] public void Teardown() => ContentRepositoryBase.ThrowOnWarning = false;