(t *testing.T)
| 420 | } |
| 421 | |
| 422 | func TestIssuesService_Edit_invalidOwner(t *testing.T) { |
| 423 | t.Parallel() |
| 424 | client, _, _ := setup(t) |
| 425 | |
| 426 | ctx := t.Context() |
| 427 | _, _, err := client.Issues.Edit(ctx, "%", "r", 1, nil) |
| 428 | testURLParseError(t, err) |
| 429 | } |
| 430 | |
| 431 | func TestIssuesService_Lock(t *testing.T) { |
| 432 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…