Skip to content

Commit

Permalink
LPD-15625 Use milliseconds precision
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaprax authored and brianchandotcom committed Jan 28, 2024
1 parent 749484f commit cd203aa
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2766,7 +2766,11 @@ public void testUpdateObjectEntry() throws Exception {
Date birthdayDate = calendar.getTime();

String script = RandomTestUtil.randomString(1500);
Timestamp timestamp = Timestamp.valueOf(LocalDateTime.now());
Timestamp timestamp = Timestamp.valueOf(
LocalDateTime.now(
).withNano(
0
));

_objectEntryLocalService.updateObjectEntry(
TestPropsValues.getUserId(), objectEntry.getObjectEntryId(),
Expand Down

0 comments on commit cd203aa

Please sign in to comment.