Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Duin committed Jan 29, 2019
1 parent 630b275 commit 971a492
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ public void eventuallyConsistentCleanUpRemainingPartition() throws Exception {
// return empty list as val3Parh is still in use.
when(legacyReplicationPathRepository
.findByCreationTimestampLessThanEqual(eq(now.getMillis()), any(PageRequest.class)))
.thenReturn(new PageImpl<>(Collections.<LegacyReplicaPath> emptyList()));
.thenReturn(new PageImpl<>(Collections.<LegacyReplicaPath>emptyList()));

service.cleanUp(now);
verify(legacyReplicationPathRepository, never()).delete(any(LegacyReplicaPath.class));
Expand Down

0 comments on commit 971a492

Please sign in to comment.