Add ApiOption overloads to methods on I(Observable)RepositoryCommentsClient (#1310)

This commit is contained in:
Alexander Efremov
2016-05-24 03:54:31 +07:00
committed by Brendan Forster
parent f1771aa3f1
commit 26cc074d74
10 changed files with 720 additions and 31 deletions
@@ -122,8 +122,8 @@ namespace Octokit.Tests.Reactive
private void SetupWithNonReactiveClient()
{
var deploymentsClient = new RepoCollaboratorsClient(Substitute.For<IApiConnection>());
_githubClient.Repository.Collaborator.Returns(deploymentsClient);
var collaboratorsClient = new RepoCollaboratorsClient(Substitute.For<IApiConnection>());
_githubClient.Repository.Collaborator.Returns(collaboratorsClient);
_client = new ObservableRepoCollaboratorsClient(_githubClient);
}