(t *testing.T)
| 525 | } |
| 526 | |
| 527 | func TestPullRequestsService_Edit_invalidOwner(t *testing.T) { |
| 528 | t.Parallel() |
| 529 | client, _, _ := setup(t) |
| 530 | |
| 531 | ctx := t.Context() |
| 532 | _, _, err := client.PullRequests.Edit(ctx, "%", "r", 1, &PullRequest{}) |
| 533 | testURLParseError(t, err) |
| 534 | } |
| 535 | |
| 536 | func TestPullRequestsService_ListCommits(t *testing.T) { |
| 537 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…