Skip to content

Commit d384a93

Browse files
author
Matt Casters
committed
Fix of issue #4726
1 parent da9bed2 commit d384a93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: plugins/misc/testing/src/main/java/org/apache/hop/testing/actions/runtests/RunPipelineTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public Result execute(Result prevResult, int nr) throws HopException {
142142
public String[] getReferencedObjectDescriptions() {
143143
String[] descriptions = new String[testNames.size()];
144144
for (int i = 0; i < descriptions.length; i++) {
145-
descriptions[i] = "Pipeline of unit test : " + testNames.get(i);
145+
descriptions[i] = "Pipeline of unit test : " + testNames.get(i).getTestName();
146146
}
147147
return descriptions;
148148
}

0 commit comments

Comments
 (0)