Polishing.

This commit is contained in:
Greg L. Turnquist
2022-04-13 11:59:11 -05:00
parent e62cafb190
commit 89734de2d8

View File

@@ -126,7 +126,8 @@ class JpaRepositoryTests {
repository.saveAll(Arrays.asList(one, two, three));
repository.flush();
repository.deleteAllByIdInBatch(Arrays.asList(new SampleEntityPK("one", "eins"),new SampleEntityPK("three", "drei")));
repository
.deleteAllByIdInBatch(Arrays.asList(new SampleEntityPK("one", "eins"), new SampleEntityPK("three", "drei")));
assertThat(repository.findAll()).containsExactly(two);
}