-
Bug
-
Resolution: Fixed
-
Major
-
None
After making junit-attachments compatible with Pipeline, I've discovered that case result pages for failed tests with attachments on Pipeline jobs now show up with no values for error details, etc, while the headers for each of those fields are still visible.
Turns out that AttachmentTestAction.annotate is NPEing.
- links to
Issue was a call to the deprecated getOwner() on a TestObject, which returns null for WorkflowRun related tests. Changing that to getRun() fixes it.