Skip to content

Commit 93bff30

Browse files
authored
Pluggable storage checks api support (#225)
1 parent a0b3097 commit 93bff30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/hudson/tasks/junit/JUnitResultArchiver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public static TestResultSummary parseAndSummarize(@Nonnull JUnitTask task, Pipel
243243
result = parse(task, pipelineTestDetails, testResults, build, workspace, launcher, listener);
244244
summary = null; // see below
245245
} else {
246-
result = new TestResult(); // irrelevant
246+
result = new TestResult(storage.load(build.getParent().getFullName(), build.getNumber())); // irrelevant
247247
summary = new JUnitParser(task.isKeepLongStdio(), task.isAllowEmptyResults()).summarizeResult(testResults, build, pipelineTestDetails, workspace, launcher, listener, storage);
248248
}
249249

0 commit comments

Comments
 (0)