Skip to content

Commit

Permalink
Fixing log message
Browse files Browse the repository at this point in the history
  • Loading branch information
pasqualino-cristaudo-acn committed Apr 9, 2024
1 parent bfb0c94 commit b5cd513
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void readingEventUpToTheStatusOfNotification(String status) {
Assertions.assertTrue(pnPollingResponseV23.getResult());
Assertions.assertNotNull(pnPollingResponseV23.getNotificationStatusHistoryElement());
sharedSteps.setSentNotification(pnPollingResponseV23.getNotification());
logger.info("NOTIFICATION_STATUS_HISTORY_ELEMENT v1: " + pnPollingResponseV23.getNotificationStatusHistoryElement());
logger.info("NOTIFICATION_STATUS_HISTORY_ELEMENT: " + pnPollingResponseV23.getNotificationStatusHistoryElement());
} catch (AssertionFailedError assertionFailedError) {
sharedSteps.throwAssertFailerWithIUN(assertionFailedError);
}
Expand Down Expand Up @@ -134,13 +134,13 @@ public void readingEventUpToTheStatusOfNotification(String status, int destinata
PnPollingParameter.builder()
.value(status)
.build());
logger.info("NOTIFICATION_STATUS_HISTORY v1: " + pnPollingResponseV23.getNotification().getNotificationStatusHistory());
logger.info("NOTIFICATION_STATUS_HISTORY: " + pnPollingResponseV23.getNotification().getNotificationStatusHistory());
try {
Assertions.assertTrue(pnPollingResponseV23.getResult());
Assertions.assertNotNull(pnPollingResponseV23.getNotificationStatusHistoryElement());
sharedSteps.setSentNotification(pnPollingResponseV23.getNotification());
NotificationStatusHistoryElement notificationStatusHistoryElement = pnPollingResponseV23.getNotificationStatusHistoryElement();
logger.info("NOTIFICATION_STATUS_HISTORY_ELEMENT v1: " + notificationStatusHistoryElement);
logger.info("NOTIFICATION_STATUS_HISTORY_ELEMENT: " + notificationStatusHistoryElement);

List<String> timelineElements = notificationStatusHistoryElement.getRelatedTimelineElements();
boolean esiste = false;
Expand Down

0 comments on commit b5cd513

Please sign in to comment.