mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 05:35:11 +00:00
Redundant braces of argument list were removed (#1277)
This commit is contained in:
committed by
Brendan Forster
parent
cdc708450f
commit
db839f58d4
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user