Skip to content

Commit

Permalink
fixed tests for bomupload
Browse files Browse the repository at this point in the history
Signed-off-by: mehab <[email protected]>
  • Loading branch information
mehab committed Oct 2, 2023
1 parent 0a3f6df commit f1adf93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void testGetIntegrityMetaComponent() {
assertThat(meta.getMd5()).isNull();
assertThat(meta.getSha1()).isNull();
assertThat(meta.getSha256()).isNull();
assertThat(meta.getLastFetch()).isEqualTo(Date.from(Instant.now().minus(2, ChronoUnit.HOURS)));
assertThat(meta.getLastFetch()).isBefore(Date.from(Instant.now().minus(2, ChronoUnit.HOURS)));
assertThat(meta.getPublishedAt()).isNull();
}
);
Expand Down

0 comments on commit f1adf93

Please sign in to comment.