(value T, err error)
| 4419 | } |
| 4420 | |
| 4421 | func must[T any](value T, err error) T { |
| 4422 | if err != nil { |
| 4423 | panic(err) |
| 4424 | } |
| 4425 | return value |
| 4426 | } |
| 4427 | |
| 4428 | func TestUpdateWorkspaceACL(t *testing.T) { |
| 4429 | t.Parallel() |
no outgoing calls
no test coverage detected