Test updates: add timezone, some fixes for debug callers

This commit is contained in:
2026-06-25 15:52:53 +09:00
parent e1109e925b
commit 7e01886ad8
4 changed files with 29 additions and 21 deletions
@@ -12,6 +12,8 @@ use PHPUnit\Framework\TestCase;
*/
final class CoreLibsAAASetupDataTest extends TestCase
{
public const TIME_ZONE = 'Asia/Tokyo';
/**
* Covers nothing
*
@@ -34,6 +36,9 @@ final class CoreLibsAAASetupDataTest extends TestCase
BASE,
'BASE Path set check'
);
// if time zone is not set, errors can happen
ini_set('date.timezone', self::TIME_ZONE);
}
}