mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
Change "IssueId" to long (#2890)
* Change "IssueId" to `long` * Change "Id" to `long` in ctor * Change from `int` to `long` for issue id in "NewPullRequest"
This commit is contained in:
@@ -441,7 +441,7 @@ public class ObservableProjectCardsClientTests
|
||||
return result;
|
||||
}
|
||||
|
||||
private static async Task<ProjectCard> CreateIssueCardHelper(IObservableGitHubClient githubClient, int issueId, int columnId)
|
||||
private static async Task<ProjectCard> CreateIssueCardHelper(IObservableGitHubClient githubClient, long issueId, int columnId)
|
||||
{
|
||||
var newCard = new NewProjectCard(issueId, ProjectCardContentType.Issue);
|
||||
var result = await githubClient.Repository.Project.Card.Create(columnId, newCard);
|
||||
|
||||
Reference in New Issue
Block a user