(t *testing.T)
| 95 | } |
| 96 | |
| 97 | func TestIssuesService_GetLabel_invalidOwner(t *testing.T) { |
| 98 | t.Parallel() |
| 99 | client, _, _ := setup(t) |
| 100 | |
| 101 | ctx := t.Context() |
| 102 | _, _, err := client.Issues.GetLabel(ctx, "%", "%", "%") |
| 103 | testURLParseError(t, err) |
| 104 | } |
| 105 | |
| 106 | func TestIssuesService_CreateLabel(t *testing.T) { |
| 107 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…