(t *testing.T)
| 397 | } |
| 398 | |
| 399 | func TestPullRequestsService_Create_invalidOwner(t *testing.T) { |
| 400 | t.Parallel() |
| 401 | client, _, _ := setup(t) |
| 402 | |
| 403 | ctx := t.Context() |
| 404 | _, _, err := client.PullRequests.Create(ctx, "%", "r", nil) |
| 405 | testURLParseError(t, err) |
| 406 | } |
| 407 | |
| 408 | func TestPullRequestsService_UpdateBranch(t *testing.T) { |
| 409 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…