Skip to content

Commit

Permalink
Use established pattern for toString() methods
Browse files Browse the repository at this point in the history
Co-authored-by: Leonard Brünings <[email protected]>
  • Loading branch information
marcphilipp and leonard84 authored Sep 17, 2024
1 parent 063af2d commit 7509773
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public boolean exec() {

@Override
public String toString() {
return "ExclusiveTask for " + testTask;
return "ExclusiveTask [" + testTask + "]";
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public ExecutionMode getExecutionMode() {

@Override
public String toString() {
return testDescriptor.toString();
return "NodeTestTask [" + testDescriptor + "]";
}

void setParentContext(C parentContext) {
Expand Down

0 comments on commit 7509773

Please sign in to comment.