Skip to content

Commit 5cd50d7

Browse files
committed
Test
1 parent a13b25f commit 5cd50d7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/github/pullrequests.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1375,6 +1375,8 @@ func SubmitPendingPullRequestReview(getGQLClient GetGQLClientFn, t translations.
13751375
}
13761376
}
13771377

1378+
return "Test", nil
1379+
13781380
if err := client.Query(ctx, &getViewerQuery, nil); err != nil {
13791381
return ghErrors.NewGitHubGraphQLErrorResponse(ctx,
13801382
"failed to get current user",
@@ -1403,7 +1405,7 @@ func SubmitPendingPullRequestReview(getGQLClient GetGQLClientFn, t translations.
14031405
"prNum": githubv4.Int(params.PullNumber),
14041406
}
14051407

1406-
fmt.Println("MAP": vars)
1408+
return vars, nil
14071409

14081410
if err := client.Query(context.Background(), &getLatestReviewForViewerQuery, vars); err != nil {
14091411
return ghErrors.NewGitHubGraphQLErrorResponse(ctx,

0 commit comments

Comments
 (0)