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:
Michael Lehto
2024-02-23 01:38:23 +01:00
committed by GitHub
parent 40041f2e2e
commit d27d1f0a22
4 changed files with 6 additions and 6 deletions

View File

@@ -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);