Skip to content

Commit 25d4810

Browse files
committed
Fix linting
1 parent 072866a commit 25d4810

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/reconciler/reconciler_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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())

0 commit comments

Comments
 (0)