From 9cfc62b65fbffdcdfed33bb81804d7689f3ca7dd Mon Sep 17 00:00:00 2001 From: Nick Guerrera Date: Fri, 18 Oct 2019 15:10:51 -0700 Subject: [PATCH] Fix test expectation to match message change --- test/EndToEnd/ProjectBuildTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/EndToEnd/ProjectBuildTests.cs b/test/EndToEnd/ProjectBuildTests.cs index f0f3a854a..ab3558dc8 100644 --- a/test/EndToEnd/ProjectBuildTests.cs +++ b/test/EndToEnd/ProjectBuildTests.cs @@ -36,9 +36,9 @@ namespace EndToEnd.Tests var runCommand = new RunCommand() .WithWorkingDirectory(projectDirectory) .ExecuteWithCapturedOutput() - // Templates are still at 3.0 and will not run on 5.0, revert to commented out assertion when 5.0 templates land + // 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-download"); + .Should().Fail().And.HaveStdErrContaining("https://aka.ms/dotnet-core-applaunch"); var binDirectory = new DirectoryInfo(projectDirectory).Sub("bin"); binDirectory.Should().HaveFilesMatching("*.dll", SearchOption.AllDirectories); @@ -80,9 +80,9 @@ namespace EndToEnd.Tests var runCommand = new RunCommand() .WithWorkingDirectory(projectDirectory) .ExecuteWithCapturedOutput() - // Templates are still at 3.0 and will not run on 5.0, revert to commented out assertion when 5.0 templates land + // 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-download"); + .Should().Fail().And.HaveStdErrContaining("https://aka.ms/dotnet-core-applaunch"); }