mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
Add new ctor to PublicRepositoryRequest taking "since" parameter as a long, and obsolete the old ctor that uses an int
Update tests to pass long datatype
This commit is contained in:
@@ -683,7 +683,7 @@ public class RepositoriesClientTests
|
||||
{
|
||||
var github = Helper.GetAuthenticatedClient();
|
||||
|
||||
var request = new PublicRepositoryRequest(32732250);
|
||||
var request = new PublicRepositoryRequest(32732250L);
|
||||
var repositories = await github.Repository.GetAllPublic(request);
|
||||
|
||||
Assert.NotNull(repositories);
|
||||
|
||||
Reference in New Issue
Block a user