From 9b3cf309cf268916d54d73583869e65f95b6e627 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Tue, 25 Feb 2020 22:32:51 -0400 Subject: [PATCH] fix minor formatting issue (#2115) --- .../Clients/DeploymentStatusClientTests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Octokit.Tests.Integration/Clients/DeploymentStatusClientTests.cs b/Octokit.Tests.Integration/Clients/DeploymentStatusClientTests.cs index 5d8ad0cc..3d19b48e 100644 --- a/Octokit.Tests.Integration/Clients/DeploymentStatusClientTests.cs +++ b/Octokit.Tests.Integration/Clients/DeploymentStatusClientTests.cs @@ -40,7 +40,8 @@ public class DeploymentStatusClientTests : IDisposable var commit = github.Git.Commit.Create(_context.RepositoryOwner, _context.RepositoryName, newCommit).Result; - var newDeployment = new NewDeployment(commit.Sha) { + var newDeployment = new NewDeployment(commit.Sha) + { Environment = "production", AutoMerge = false };