Merge branch 'MDL-62214-master-fixup' of https://github.com/FMCorz/moodle

This commit is contained in:
Andrew Nicols 2018-05-02 13:09:12 +08:00
commit d1430a1e83

View File

@ -58,7 +58,7 @@ class tool_messageinbound_manager_testcase extends provider_testcase {
global $DB;
$now = time();
$stale = time() - DAYSECS;
$stale = $now - DAYSECS - 1; // Make a second older because PHP Unit is too damn fast!!
$this->create_messagelist(['timecreated' => $now]);
$this->create_messagelist(['timecreated' => $now - HOURSECS]);