From fe676e7bc6048272393b579822f260e79543c64e Mon Sep 17 00:00:00 2001 From: Bryan Thornbury Date: Wed, 21 Sep 2016 11:51:13 -0700 Subject: [PATCH] use c# boolean syntax --- test/dotnet-publish.Tests/PublishTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dotnet-publish.Tests/PublishTests.cs b/test/dotnet-publish.Tests/PublishTests.cs index b1ea7c692..8aaf45919 100644 --- a/test/dotnet-publish.Tests/PublishTests.cs +++ b/test/dotnet-publish.Tests/PublishTests.cs @@ -106,7 +106,7 @@ namespace Microsoft.DotNet.Tools.Publish.Tests var publishCommand = new PublishCommand(testProject); publishCommand.Execute().Should().Pass(); - publishCommand.GetOutputDirectory(portable: True).Should().HaveFile("testcontentfile.txt"); + publishCommand.GetOutputDirectory(portable: true).Should().HaveFile("testcontentfile.txt"); } [Fact]