File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1534,7 +1534,7 @@ var _ = Describe("Reconciler", func() {
15341534 matchingLabels = map [string ]string {"app" : "foo" }
15351535 anotherMatchingLabels = map [string ]string {"app" : "bar" }
15361536
1537- trackingHook := hook .PostHookFunc (func (obj * unstructured.Unstructured , rel release.Release , log logr.Logger ) error {
1537+ trackingHook := hook .PostHookFunc (func (obj * unstructured.Unstructured , _ release.Release , _ logr.Logger ) error {
15381538 mu .Lock ()
15391539 defer mu .Unlock ()
15401540 reconciledCRs = append (reconciledCRs , obj .GetName ())
@@ -1605,7 +1605,7 @@ var _ = Describe("Reconciler", func() {
16051605
16061606 It ("should reconcile CRs independently when using two managers with different label selectors" , func () {
16071607 By ("creating another manager with a different label selector" , func () {
1608- postHook := hook .PostHookFunc (func (obj * unstructured.Unstructured , rel release.Release , log logr.Logger ) error {
1608+ postHook := hook .PostHookFunc (func (obj * unstructured.Unstructured , _ release.Release , _ logr.Logger ) error {
16091609 mu .Lock ()
16101610 defer mu .Unlock ()
16111611 anotherReconciledCRs = append (anotherReconciledCRs , obj .GetName ())
You can’t perform that action at this time.
0 commit comments