Ported changes for GetAllContributors from IRepositoriesClient to IObservableRepositoriesClient

This commit is contained in:
Gabriel Weyer
2014-12-13 12:11:34 +11:00
parent b0f569f808
commit 9f4df781c6
3 changed files with 6 additions and 6 deletions
@@ -266,7 +266,7 @@ namespace Octokit.Tests.Reactive
client.GetAllContributors("owner", "repo");
github.Connection.Received(1)
.Get<List<User>>(expected,
.Get<List<RepositoryContributor>>(expected,
Arg.Any<IDictionary<string, string>>(),
Arg.Any<string>());
}