Jean-Francois Leveque

Simplification

......@@ -68,7 +68,6 @@ public class AccountServiceDefaultTest {
@DisplayName("When called, should return the Accounts it gets from findByUserIdIn")
@Test
public void testReturnFromFind(@Mock AccountRepository accountRepository) {
List<Integer> integers = new ArrayList<>();
List<Account> accounts = new ArrayList<>();
List<IndexedAccount> indexedAccounts = new ArrayList<>();
when(accountRepository.findByUserIdIn(Mockito.any())).thenReturn(accounts);
......