Skip to content

Commit e8ad63b

Browse files
committed
fix: format
1 parent 16094ae commit e8ad63b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

operator-framework-core/src/test/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcherTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -350,19 +350,19 @@ void updateObservedGenerationOnCustomResourceUpdate() {
350350

351351
Reconciler<ObservedGenCustomResource> reconciler = mock(Reconciler.class);
352352
ControllerConfiguration<ObservedGenCustomResource> config =
353-
mock(ControllerConfiguration.class);
353+
mock(ControllerConfiguration.class);
354354
CustomResourceFacade<ObservedGenCustomResource> facade = mock(CustomResourceFacade.class);
355355
when(config.isGenerationAware()).thenReturn(true);
356356
when(reconciler.reconcile(any(), any()))
357-
.thenReturn(UpdateControl.updateResource(observedGenResource));
357+
.thenReturn(UpdateControl.updateResource(observedGenResource));
358358
when(facade.replaceWithLock(any())).thenReturn(observedGenResource);
359359
when(facade.updateStatus(observedGenResource)).thenReturn(observedGenResource);
360360
var dispatcher = init(observedGenResource, reconciler, config, facade);
361361

362362
PostExecutionControl<ObservedGenCustomResource> control = dispatcher.handleExecution(
363-
executionScopeWithCREvent(observedGenResource));
363+
executionScopeWithCREvent(observedGenResource));
364364
assertThat(control.getUpdatedCustomResource().get().getStatus().getObservedGeneration())
365-
.isEqualTo(1L);
365+
.isEqualTo(1L);
366366
}
367367

368368
@Test

0 commit comments

Comments
 (0)