Skip to content

Commit

Permalink
diffferent numbers for created and updated
Browse files Browse the repository at this point in the history
Signed-off-by: Maxwell Brown <[email protected]>
  • Loading branch information
Galactus22625 authored and san81 committed Nov 3, 2024
1 parent e18ee9d commit b49e082
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ void testNullCases() {
void testGivenDateField() {
Map<String, Object> fieldsTestObject = new HashMap<>();
fieldsTestObject.put("created", "2024-07-06T21:12:23.437-0700");
fieldsTestObject.put("updated", "2024-07-06T21:12:23.106-0700");
fieldsTestObject.put("updated", "2022-07-06T21:12:23.106-0700");
issueBean.setFields(fieldsTestObject);
assertEquals(issueBean.getCreatedTimeMillis(), 1720325543000L);
assertEquals(issueBean.getUpdatedTimeMillis(), 1720325543000L);
assertEquals(issueBean.getUpdatedTimeMillis(), 1657167143000L);
}

@Test
Expand Down

0 comments on commit b49e082

Please sign in to comment.