(t *testing.T)
| 306 | } |
| 307 | |
| 308 | func TestOrganizationsService_Edit_invalidOrg(t *testing.T) { |
| 309 | t.Parallel() |
| 310 | client, _, _ := setup(t) |
| 311 | |
| 312 | ctx := t.Context() |
| 313 | _, _, err := client.Organizations.Edit(ctx, "%", nil) |
| 314 | testURLParseError(t, err) |
| 315 | } |
| 316 | |
| 317 | func TestOrganizationsService_Delete(t *testing.T) { |
| 318 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…