Skip to content

Commit 8ea0267

Browse files
Fix integration test output (#17682)
* Change output * Fix teardown output
1 parent 2f2da48 commit 8ea0267

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTestBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ public abstract class UmbracoIntegrationTestBase
5151

5252
[SetUp]
5353
public void SetUp_Logging() =>
54-
TestContext.Progress.Write($"Start test {s_testCount++}: {TestContext.CurrentContext.Test.Name}");
54+
TestContext.Out.Write($"Start test {s_testCount++}: {TestContext.CurrentContext.Test.Name}");
5555

5656
[TearDown]
5757
public void TearDown_Logging() =>
58-
TestContext.Progress.Write($" {TestContext.CurrentContext.Result.Outcome.Status}");
58+
TestContext.Out.Write($" {TestContext.CurrentContext.Result.Outcome.Status}");
5959

6060
[OneTimeTearDown]
6161
public void FixtureTearDown()

0 commit comments

Comments
 (0)