From 68acf81475b787e427697c1534ad8a21858fc560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Thu, 20 Jun 2024 14:31:27 +0200 Subject: [PATCH] Remove intentional error --- 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 a3e4fa4e2..fa7350c16 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!ds"); + .Should().Pass().And.HaveStdOutContaining("Hello, World!"); } [WindowsOnlyTheory]