Skip to content

Commit

Permalink
Fix MockRecorder#debugDump
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Sep 29, 2021
1 parent 513bcec commit 03975e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void reset() {
public String debugDump(int indent) {
StringBuilder sb = new StringBuilder();
DebugUtil.debugDumpLabelLn(sb, "MockRecorder", indent);
DebugUtil.debugDumpWithLabel(sb, "executions", executions, indent + 1);
DebugUtil.debugDumpWithLabelLn(sb, "executions", executions, indent + 1);
DebugUtil.debugDumpWithLabel(sb, "realization start timestamps", realizationStartTimestamps, indent + 1);
return sb.toString();
}
Expand Down

0 comments on commit 03975e7

Please sign in to comment.