Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel Littley <slittley@thoughtmachine.net>
  • Loading branch information
toastwaffle committed Sep 4, 2023
1 parent b1cc110 commit 188f2b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/reconciler/managed/reconciler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1031,12 +1031,12 @@ func TestReconciler(t *testing.T) {
WithConnectionPublishers(),
WithFinalizer(resource.FinalizerFns{AddFinalizerFn: func(_ context.Context, _ resource.Object) error { return nil }}),
WithPollIntervalHook(func(managed resource.Managed, pollInterval time.Duration) time.Duration {
return 2*pollInterval
return 2 * pollInterval
}),
},
},
want: want{
result: reconcile.Result{RequeueAfter: 2*defaultPollInterval},
result: reconcile.Result{RequeueAfter: 2 * defaultPollInterval},
},
},
"UpdateExternalError": {
Expand Down

0 comments on commit 188f2b6

Please sign in to comment.