From 8ea0267ebc7f2dba0a470002c1c2f7063c241666 Mon Sep 17 00:00:00 2001 From: Mole Date: Wed, 4 Dec 2024 09:57:02 +0100 Subject: [PATCH] Fix integration test output (#17682) * Change output * Fix teardown output --- .../Testing/UmbracoIntegrationTestBase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTestBase.cs b/tests/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTestBase.cs index 302ce8b35d..9e4911d783 100644 --- a/tests/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTestBase.cs +++ b/tests/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTestBase.cs @@ -51,11 +51,11 @@ public abstract class UmbracoIntegrationTestBase [SetUp] public void SetUp_Logging() => - TestContext.Progress.Write($"Start test {s_testCount++}: {TestContext.CurrentContext.Test.Name}"); + TestContext.Out.Write($"Start test {s_testCount++}: {TestContext.CurrentContext.Test.Name}"); [TearDown] public void TearDown_Logging() => - TestContext.Progress.Write($" {TestContext.CurrentContext.Result.Outcome.Status}"); + TestContext.Out.Write($" {TestContext.CurrentContext.Result.Outcome.Status}"); [OneTimeTearDown] public void FixtureTearDown()