Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
Co-authored-by: Tim te Beek <[email protected]>
  • Loading branch information
shivanisky and timtebeek authored Nov 5, 2024
1 parent 40e1061 commit 5717125
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ private void rewriteFullVerify(List<Object> mocks) {
}
}

private void rewriteInOrderVerify(ArrayList<Object> mocks) {
private void rewriteInOrderVerify(List<Object> mocks) {
if (!mocks.isEmpty()) {
StringBuilder sb = new StringBuilder(VERIFY_IN_ORDER_TEMPLATE_PREFIX);
mocks.forEach(mock -> sb.append(ANY_TEMPLATE_FIELD).append(", ")); // InOrder inOrder = inOrder(mock1, mock2 ...
Expand Down

0 comments on commit 5717125

Please sign in to comment.