Skip to content

Commit

Permalink
add debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
vietnguyen committed Nov 16, 2023
1 parent 86d6454 commit 56ea478
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1539,7 +1539,11 @@ void resourceTablesTimestampUpdated() {
systemSettingManager.getSystemSetting(
SettingKey.LAST_SUCCESSFUL_RESOURCE_TABLES_UPDATE, Date.class);
assertNotEquals(null, resourceTablesUpdated);
assertTrue(tableLastUpdated.compareTo(processStartTime) > 0);
assertTrue(resourceTablesUpdated.compareTo(processStartTime) > 0);
assertTrue(
tableLastUpdated.compareTo(processStartTime) > 0,
String.format("%s > %s", tableLastUpdated, processStartTime));
assertTrue(
resourceTablesUpdated.compareTo(processStartTime) > 0,
String.format("%s > %s", resourceTablesUpdated, processStartTime));
}
}

0 comments on commit 56ea478

Please sign in to comment.