Skip to content

Commit

Permalink
feature: TRACEFOSS-1859 print stack traces from assertion errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-lcapellino committed Sep 20, 2023
1 parent db0296b commit a9c35cb
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ public void iCheckIfQualityInvestigationHasProperValues(DataTable dataTable) {
NotificationValidator.assertHasFields(result, normalize(dataTable.asMap()));
return true;
} catch (AssertionError assertionError) {
assertionError.printStackTrace();
return false;
}
}
Expand Down Expand Up @@ -316,6 +317,7 @@ public void iCheckIfQualityAlertHasProperValues(DataTable dataTable) {
NotificationValidator.assertHasFields(result, normalize(dataTable.asMap()));
return true;
} catch (AssertionError assertionError) {
assertionError.printStackTrace();
return false;
}
}
Expand Down

0 comments on commit a9c35cb

Please sign in to comment.