fixed errors in tests

This commit is contained in:
aedampir@gmail.com
2016-06-17 19:07:49 +07:00
parent 2979fa47b8
commit 91a1cad17e
2 changed files with 47 additions and 16 deletions
@@ -526,19 +526,19 @@ namespace Octokit.Reactive
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="branch">The name of the branch</param>
/// <param name="branchName">The name of the branch</param>
/// <param name="update">New values to update the branch with</param>
/// <returns>The updated <see cref="T:Octokit.Branch"/></returns>
IObservable<Branch> EditBranch(string owner, string name, string branch, BranchUpdate update);
IObservable<Branch> EditBranch(string owner, string name, string branchName, BranchUpdate update);
/// <summary>
/// Edit the specified branch with the values given in <paramref name="update"/>
/// </summary>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="branch">The name of the branch</param>
/// <param name="branchName">The name of the branch</param>
/// <param name="update">New values to update the branch with</param>
/// <returns>The updated <see cref="T:Octokit.Branch"/></returns>
IObservable<Branch> EditBranch(int repositoryId, string branch, BranchUpdate update);
IObservable<Branch> EditBranch(int repositoryId, string branchName, BranchUpdate update);
/// <summary>
/// A client for GitHub's Repo Collaborators.