Fix the compile Test

This commit is contained in:
Bryan Thornbury 2016-02-08 18:01:27 -08:00
parent 2106bb9295
commit ff888a70a4

View file

@ -58,7 +58,8 @@ namespace Microsoft.DotNet.Tools.Compiler.Tests
var buildCmd = new BuildCommand(testProject, output: outputDir);
var result = buildCmd.ExecuteWithCapturedOutput();
result.Should().Pass();
Assert.Contains("CA1018", result.StdOut);
Assert.Contains("CA1018", result.StdErr);
}
private void CopyProjectToTempDir(string projectDir, TempDirectory tempDir)