Skip to content
This repository was archived by the owner on Feb 27, 2020. It is now read-only.

Commit bf94d22

Browse files
committed
Fix integration test due to breaking change in latest Octokit.net release
1 parent 5716bd6 commit bf94d22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ScriptCs.Octokit.Sample/sample.csx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var userTask = client.User.Get("alfhenrik");
44
var user = userTask.Result;
55
Console.WriteLine(user.Name);
66

7-
var repoTask = client.Repository.GetAllBranches("alfhenrik", "octokit.net");
7+
var repoTask = client.Repository.Branch.GetAll("alfhenrik", "octokit.net");
88
var branches = repoTask.Result;
99
Console.WriteLine(branches.Count);
1010
foreach(var branch in branches)

0 commit comments

Comments
 (0)