Skip to content

Commit 89734de

Browse files
committed
Polishing.
1 parent e62cafb commit 89734de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/org/springframework/data/jpa/repository/support/JpaRepositoryTests.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ void deleteAllByIdInBatch() {
126126
repository.saveAll(Arrays.asList(one, two, three));
127127
repository.flush();
128128

129-
repository.deleteAllByIdInBatch(Arrays.asList(new SampleEntityPK("one", "eins"),new SampleEntityPK("three", "drei")));
129+
repository
130+
.deleteAllByIdInBatch(Arrays.asList(new SampleEntityPK("one", "eins"), new SampleEntityPK("three", "drei")));
130131
assertThat(repository.findAll()).containsExactly(two);
131132
}
132133

0 commit comments

Comments
 (0)