From 563babd5551b601bf685a560577febbca4456822 Mon Sep 17 00:00:00 2001 From: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com> Date: Thu, 14 Oct 2021 16:01:54 +0200 Subject: [PATCH] Removed logging from tests --- .../Controllers/ContentControllerTests.cs | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/src/Umbraco.Tests.Integration/Umbraco.Web.BackOffice/Controllers/ContentControllerTests.cs b/src/Umbraco.Tests.Integration/Umbraco.Web.BackOffice/Controllers/ContentControllerTests.cs index 2ec993b72f..7d9e2f149e 100644 --- a/src/Umbraco.Tests.Integration/Umbraco.Web.BackOffice/Controllers/ContentControllerTests.cs +++ b/src/Umbraco.Tests.Integration/Umbraco.Web.BackOffice/Controllers/ContentControllerTests.cs @@ -446,27 +446,7 @@ namespace Umbraco.Cms.Tests.Integration.Umbraco.Web.BackOffice.Controllers var currentThreadCulture = Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName; var currentUICulture = Thread.CurrentThread.CurrentUICulture.TwoLetterISOLanguageName; - if (string.IsNullOrEmpty(currentThreadCulture)) - { - TestContext.Progress.Write($"======CURRENT THREAD CULTURE IN TEST====== NO CULTURE"); - } - else - { - TestContext.Progress.Write($"======CURRENT THREAD CULTURE IN TEST======{currentThreadCulture}"); - } - if (string.IsNullOrEmpty(currentUICulture)) - { - TestContext.Progress.Write($"======CURRENT UI CULTURE IN TEST====== NO CULTURE"); - } - else - { - TestContext.Progress.Write($"======CURRENT UI CULTURE IN TEST======{currentUICulture}"); - } ILocalizedTextService localizedTextService = GetRequiredService(); - foreach (var culture in localizedTextService.GetSupportedCultures()) - { - TestContext.Progress.Write($"======SUPPORTED CULTURES IN TEXT SERVICE======{culture.Name}"); - } var expectedMessage = localizedTextService.Localize("speechBubbles", "publishWithNoDomains"); Assert.Multiple(() =>