(t *testing.T)
| 217 | } |
| 218 | |
| 219 | func TestOrganizationsService_Get_invalidOrg(t *testing.T) { |
| 220 | t.Parallel() |
| 221 | client, _, _ := setup(t) |
| 222 | |
| 223 | ctx := t.Context() |
| 224 | _, _, err := client.Organizations.Get(ctx, "%") |
| 225 | testURLParseError(t, err) |
| 226 | } |
| 227 | |
| 228 | func TestOrganizationsService_GetByID(t *testing.T) { |
| 229 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…