BAEL-4844: Fixing the indentation.

This commit is contained in:
bhandy 2021-04-21 06:47:13 -04:00
parent cfee931194
commit 78faf1e871
4 changed files with 45 additions and 43 deletions

View File

@ -19,8 +19,10 @@ public class MyTracedServiceConsumerUnitTest {
@Test @Test
public void whenCallingConsumer_thenServiceIsCalled() { public void whenCallingConsumer_thenServiceIsCalled() {
doNothing().when(myTracedService).performSomeLogic(); doNothing().when(myTracedService)
doNothing().when(myTracedService).performSomeAdditionalLogic(); .performSomeLogic();
doNothing().when(myTracedService)
.performSomeAdditionalLogic();
new MyTracedServiceConsumer(myTracedService); new MyTracedServiceConsumer(myTracedService);