(fn func(context.Context, string, string, bool, bool) (string, string, error))
| 22 | } |
| 23 | |
| 24 | func newActionUpdateDepsWithLatestRelease(fn func(context.Context, string, string, bool, bool) (string, string, error)) actionUpdateDeps { |
| 25 | deps := newTestActionUpdateDeps() |
| 26 | deps.getLatestRelease = fn |
| 27 | return deps |
| 28 | } |
| 29 | |
| 30 | func TestActionKeyVersionConsistency(t *testing.T) { |
| 31 | // This test ensures that when an action is updated, the key in the map |
no test coverage detected