(t *testing.T, reg *httpmock.Registry)
| 1423 | } |
| 1424 | |
| 1425 | func mockIssueUpdateApiActors(t *testing.T, reg *httpmock.Registry) { |
| 1426 | reg.Register( |
| 1427 | httpmock.GraphQL(`mutation ReplaceActorsForAssignable\b`), |
| 1428 | httpmock.GraphQLMutation(` |
| 1429 | { "data": { "replaceActorsForAssignable": { "__typename": "" } } }`, |
| 1430 | func(inputs map[string]interface{}) {}), |
| 1431 | ) |
| 1432 | } |
| 1433 | |
| 1434 | func mockIssueUpdateLabels(t *testing.T, reg *httpmock.Registry) { |
| 1435 | reg.Register( |
no test coverage detected