(actual, expected []any)
| 578 | } |
| 579 | |
| 580 | func equalLockInputs(actual, expected []any) bool { |
| 581 | if len(actual) != len(expected) { |
| 582 | return false |
| 583 | } |
| 584 | for i := range actual { |
| 585 | if actual[i] != expected[i] { |
| 586 | return false |
| 587 | } |
| 588 | } |
| 589 | return true |
| 590 | } |
| 591 | |
| 592 | func startModuleResolveGitService(ctx context.Context, t *testctx.T, c *dagger.Client) (*dagger.Service, string) { |
| 593 | t.Helper() |
no outgoing calls
no test coverage detected