From ee948996ca1f6c7c1fad7d33b6de9ce302a5a2fb Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Wed, 3 Jul 2024 15:23:18 -0700 Subject: [PATCH] Revert "Remove intentional error" This reverts commit 68acf81475b787e427697c1534ad8a21858fc560. --- test/EndToEnd/ProjectBuildTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/EndToEnd/ProjectBuildTests.cs b/test/EndToEnd/ProjectBuildTests.cs index fa7350c16..a3e4fa4e2 100644 --- a/test/EndToEnd/ProjectBuildTests.cs +++ b/test/EndToEnd/ProjectBuildTests.cs @@ -82,7 +82,7 @@ namespace EndToEnd.Tests var runCommand = new RunCommand() .WithWorkingDirectory(projectDirectory) .ExecuteWithCapturedOutput() - .Should().Pass().And.HaveStdOutContaining("Hello, World!"); + .Should().Pass().And.HaveStdOutContaining("Hello, World!ds"); } [WindowsOnlyTheory]