Skip to content

Commit

Permalink
Remove deprecated usages
Browse files Browse the repository at this point in the history
  • Loading branch information
crobert-1 committed Jan 7, 2025
1 parent 28fde74 commit 676282e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func TestScrape(t *testing.T) {
contribs: [][]*github.Contributor{
{
{
ID: github.Int64(1),
ID: github.Ptr(int64(1)),
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -685,10 +685,10 @@ func TestGetContributors(t *testing.T) {
contribResponse: contribResponse{
contribs: [][]*github.Contributor{{
{
ID: github.Int64(1),
ID: github.Ptr(int64(1)),
},
{
ID: github.Int64(2),
ID: github.Ptr(int64(2)),
},
}},
responseCode: http.StatusOK,
Expand Down

0 comments on commit 676282e

Please sign in to comment.