// compare dates of first and last log
long firstLogDate = ServerLogs.extractFirstDate(readLogLines(orchestrator)).getTime();
long startedAtDate = extractStartedAtDate(orchestrator);
- assertDurationAround(startedAtDate - firstLogDate, 45000);
+ assertDurationAround(startedAtDate - firstLogDate, 38_000);
ServerLogs.clear(orchestrator);
orchestrator.stop();
List<String> lines = readLogLines(orchestrator);
long firstStopLogDate = ServerLogs.extractFirstDate(lines).getTime();
long stopDate = extractStopDate(lines);
- assertDurationLessThan(stopDate - firstStopLogDate, 10000);
+ assertDurationLessThan(stopDate - firstStopLogDate, 10_000);
} finally {
orchestrator.stop();