Skip to content

Commit 563babd

Browse files
committed
Removed logging from tests
1 parent d184f82 commit 563babd

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

src/Umbraco.Tests.Integration/Umbraco.Web.BackOffice/Controllers/ContentControllerTests.cs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -446,27 +446,7 @@ public async Task PostSave_Validates_Domains_Exist()
446446

447447
var currentThreadCulture = Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName;
448448
var currentUICulture = Thread.CurrentThread.CurrentUICulture.TwoLetterISOLanguageName;
449-
if (string.IsNullOrEmpty(currentThreadCulture))
450-
{
451-
TestContext.Progress.Write($"======CURRENT THREAD CULTURE IN TEST====== NO CULTURE");
452-
}
453-
else
454-
{
455-
TestContext.Progress.Write($"======CURRENT THREAD CULTURE IN TEST======{currentThreadCulture}");
456-
}
457-
if (string.IsNullOrEmpty(currentUICulture))
458-
{
459-
TestContext.Progress.Write($"======CURRENT UI CULTURE IN TEST====== NO CULTURE");
460-
}
461-
else
462-
{
463-
TestContext.Progress.Write($"======CURRENT UI CULTURE IN TEST======{currentUICulture}");
464-
}
465449
ILocalizedTextService localizedTextService = GetRequiredService<ILocalizedTextService>();
466-
foreach (var culture in localizedTextService.GetSupportedCultures())
467-
{
468-
TestContext.Progress.Write($"======SUPPORTED CULTURES IN TEXT SERVICE======{culture.Name}");
469-
}
470450
var expectedMessage = localizedTextService.Localize("speechBubbles", "publishWithNoDomains");
471451

472452
Assert.Multiple(() =>

0 commit comments

Comments
 (0)