()
| 138 | } |
| 139 | |
| 140 | func anyCancellableContext() gomock.Matcher { |
| 141 | //nolint:forbidigo // This creates a context type for gomock matching, not for actual test usage |
| 142 | ctxWithCancel, cancel := context.WithCancel(context.Background()) |
| 143 | cancel() |
| 144 | return gomock.AssignableToTypeOf(ctxWithCancel) |
| 145 | } |
| 146 | |
| 147 | func projectFilterListOpt(withOneOff bool) client.ContainerListOptions { |
| 148 | filter := projectFilter(strings.ToLower(testProject)).Add("label", compose.ConfigHashLabel) |
no outgoing calls
no test coverage detected