diff --git a/test/EndToEnd/ProjectBuildTests.cs b/test/EndToEnd/ProjectBuildTests.cs index e0080792f..8a88bbc08 100644 --- a/test/EndToEnd/ProjectBuildTests.cs +++ b/test/EndToEnd/ProjectBuildTests.cs @@ -36,9 +36,7 @@ namespace EndToEnd.Tests var runCommand = new RunCommand() .WithWorkingDirectory(projectDirectory) .ExecuteWithCapturedOutput() - // Templates are still at 3.1 and will not run on 5.0, revert to commented out assertion when 5.0 templates land - //.Should().Pass().And.HaveStdOutContaining("Hello World!"); - .Should().Fail().And.HaveStdErrContaining("https://aka.ms/dotnet-core-applaunch"); + .Should().Pass().And.HaveStdOutContaining("Hello World!"); var binDirectory = new DirectoryInfo(projectDirectory).Sub("bin"); binDirectory.Should().HaveFilesMatching("*.dll", SearchOption.AllDirectories); @@ -80,10 +78,7 @@ namespace EndToEnd.Tests var runCommand = new RunCommand() .WithWorkingDirectory(projectDirectory) .ExecuteWithCapturedOutput() - // Templates are still at 3.1 and will not run on 5.0, revert to commented out assertion when 5.0 templates land - //.Should().Pass().And.HaveStdOutContaining("Hello World!"); - .Should().Fail().And.HaveStdErrContaining("https://aka.ms/dotnet-core-applaunch"); - + .Should().Pass().And.HaveStdOutContaining("Hello World!"); } [Theory]