Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
fix AirlineInitiatedChangeTest
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrdmz committed Aug 23, 2024
1 parent f6fa444 commit 51900d8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import org.mockserver.model.Parameter;

import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.time.ZonedDateTime;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
Expand Down Expand Up @@ -67,7 +67,7 @@ void update(MockServerClient mockClient) {

assertEquals("aic_0000AMPr4lUGju0EEBrHCC", airlineInitiatedChange.getId());
assertEquals(AirlineInitiatedChangeActionTaken.cancelled, airlineInitiatedChange.getActionTaken());
assertEquals(LocalDateTime.parse("2022-08-11T10:51:30.702393"), airlineInitiatedChange.getUpdatedAt());
assertEquals(ZonedDateTime.parse("2022-08-11T10:51:30.702393Z"), airlineInitiatedChange.getUpdatedAt());
}

}

0 comments on commit 51900d8

Please sign in to comment.