(t *testing.T, mgr *format.Manager)
| 400 | } |
| 401 | |
| 402 | func mustGetMutableParameters(t *testing.T, mgr *format.Manager) format.MutableParameters { |
| 403 | t.Helper() |
| 404 | |
| 405 | mp, err := mgr.GetMutableParameters(testlogging.Context(t)) |
| 406 | require.NoError(t, err) |
| 407 | |
| 408 | return mp |
| 409 | } |
| 410 | |
| 411 | func mustGetUpgradeLockIntent(t *testing.T, mgr *format.Manager) *format.UpgradeLockIntent { |
| 412 | t.Helper() |
no test coverage detected