mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 21:55:12 +00:00
Redundant braces of argument list were removed (#1277)
This commit is contained in:
committed by
Brendan Forster
parent
cdc708450f
commit
db839f58d4
@@ -55,7 +55,7 @@ namespace Octokit.Tests.Reactive
|
||||
var gitHubClient = Substitute.For<IGitHubClient>();
|
||||
var client = new ObservableIssueCommentsClient(gitHubClient);
|
||||
|
||||
var options=new ApiOptions()
|
||||
var options=new ApiOptions
|
||||
{
|
||||
StartPage = 1,
|
||||
PageSize = 1,
|
||||
@@ -103,7 +103,7 @@ namespace Octokit.Tests.Reactive
|
||||
var gitHubClient = Substitute.For<IGitHubClient>();
|
||||
var client = new ObservableIssueCommentsClient(gitHubClient);
|
||||
|
||||
var options=new ApiOptions()
|
||||
var options=new ApiOptions
|
||||
{
|
||||
StartPage = 1,
|
||||
PageSize = 1,
|
||||
|
||||
Reference in New Issue
Block a user