Redundant braces of argument list were removed (#1277)

This commit is contained in:
Alexander Efremov
2016-04-21 13:23:42 +07:00
committed by Brendan Forster
parent cdc708450f
commit db839f58d4
10 changed files with 23 additions and 23 deletions

View File

@@ -152,7 +152,7 @@ namespace Octokit.Tests.Clients
{
var connection = Substitute.For<IApiConnection>();
var client = new RepositoriesClient(connection);
var editRepositoryHook = new EditRepositoryHook() { Active = false };
var editRepositoryHook = new EditRepositoryHook { Active = false };
client.Hooks.Edit("owner", "repo", 12345678, editRepositoryHook);