(t *testing.T)
| 338 | } |
| 339 | |
| 340 | func TestIssuesService_Create_invalidOwner(t *testing.T) { |
| 341 | t.Parallel() |
| 342 | client, _, _ := setup(t) |
| 343 | |
| 344 | ctx := t.Context() |
| 345 | _, _, err := client.Issues.Create(ctx, "%", "r", nil) |
| 346 | testURLParseError(t, err) |
| 347 | } |
| 348 | |
| 349 | func TestIssuesService_Edit(t *testing.T) { |
| 350 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…