From 1c32adbeb9e6feea3919f0d1bd5a25ae7ed8f3ff Mon Sep 17 00:00:00 2001 From: Vlada Shubina Date: Wed, 14 Jul 2021 21:04:21 +0300 Subject: [PATCH] fixed Hello World tests --- test/EndToEnd/ProjectBuildTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/EndToEnd/ProjectBuildTests.cs b/test/EndToEnd/ProjectBuildTests.cs index 99dc618d9..63a4a3dd4 100644 --- a/test/EndToEnd/ProjectBuildTests.cs +++ b/test/EndToEnd/ProjectBuildTests.cs @@ -40,7 +40,7 @@ namespace EndToEnd.Tests var runCommand = new RunCommand() .WithWorkingDirectory(projectDirectory) .ExecuteWithCapturedOutput() - .Should().Pass().And.HaveStdOutContaining("Hello World!"); + .Should().Pass().And.HaveStdOutContaining("Hello, World!"); var binDirectory = new DirectoryInfo(projectDirectory).Sub("bin"); binDirectory.Should().HaveFilesMatching("*.dll", SearchOption.AllDirectories); @@ -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!"); } [WindowsOnlyFact]