Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
chillleader committed Jun 17, 2024
1 parent 29a29be commit 83c25f9
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,8 @@ void newerVersionDeleted_shouldRegisterOldOne() {
importer.scheduleImport();

// then
verify(manager, times(1)).handleNewProcessDefinitions(Set.of(first.getFirst()));
verify(manager, times(1))
.handleDeletedProcessDefinitions(Set.of(first.getFirst().getVersion()));
verify(manager, times(1)).handleNewProcessDefinitions(Set.of(first.get(0)));
verify(manager, times(1)).handleDeletedProcessDefinitions(Set.of(first.get(0).getVersion()));
verify(manager, times(1)).handleNewProcessDefinitions(new HashSet<>(second));
}

Expand Down

0 comments on commit 83c25f9

Please sign in to comment.