Add sleep for tests

This commit is contained in:
Daniel Mason 2023-03-20 10:44:47 +13:00
parent 94cae8d271
commit 6737df5925
2 changed files with 4 additions and 1 deletions

View file

@ -71,6 +71,6 @@ class Stat
*/
public static function clear(string $stat): bool
{
return (bool)Resque::redis()->unlink('stat:' . $stat);
return (bool)Resque::redis()->del('stat:' . $stat);
}
}