Skip to content

Commit

Permalink
Fix of issue apache#4726
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Casters committed Dec 18, 2024
1 parent d57a033 commit 537c2f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public Result execute(Result prevResult, int nr) throws HopException {
public String[] getReferencedObjectDescriptions() {
String[] descriptions = new String[testNames.size()];
for (int i = 0; i < descriptions.length; i++) {
descriptions[i] = "Pipeline of unit test : " + testNames.get(i);
descriptions[i] = "Pipeline of unit test : " + testNames.get(i).getTestName();
}
return descriptions;
}
Expand Down

0 comments on commit 537c2f5

Please sign in to comment.