Skip to content

Commit

Permalink
[JENKINS-72474] Apply suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreffe committed Dec 18, 2023
1 parent aa846cf commit 8363544
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void testOneIndicationFound() throws Exception {
assertNotNull(scanLogAction);
assertNotNull(scanLogAction.getStartTime());
assertNotNull(scanLogAction.getEndTime());
assertNull(scanLogAction.getException());
assertNull(scanLogAction.getExceptionMessage());

FailureCauseBuildAction action = build.getAction(FailureCauseBuildAction.class);
assertNotNull(action);
Expand Down Expand Up @@ -180,7 +180,7 @@ public void testExceptionDuringParsing() throws Exception {
assertNotNull(scanLogAction);
assertNotNull(scanLogAction.getStartTime());
assertNotNull(scanLogAction.getEndTime());
assertNotNull(scanLogAction.getException());
assertNotNull(scanLogAction.getExceptionMessage());

FailureCauseBuildAction action = build.getAction(FailureCauseBuildAction.class);
assertNotNull(action);
Expand Down

0 comments on commit 8363544

Please sign in to comment.