JPA Entities and the Serializable Interface - indentation

This commit is contained in:
Mladen Savic 2021-07-02 09:15:43 +02:00
parent ec09e1293f
commit fe5ea96f76
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ public class JPASerializableIntegrationTest {
entityManager.persist(account2);
List userAccounts = entityManager.createQuery("select a from Account a join fetch a.user where a.user.email = :email")
.setParameter("email", email).getResultList();
.setParameter("email", email)
.getResultList();
assertEquals(2, userAccounts.size());
}