Replace assertRegExp() assertMatchesRegularExpression()

This commit is contained in:
Philipp 2021-12-12 20:19:52 +01:00
parent f4907a48d8
commit 015de29b7b
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
4 changed files with 7 additions and 7 deletions

View file

@ -29,7 +29,7 @@ class WorkerLoggerTest extends MockedTest
{
private function assertUid($uid)
{
self::assertRegExp('/^[a-zA-Z0-9]{' . WorkerLogger::WORKER_ID_LENGTH . '}+$/', $uid);
self::assertMatchesRegularExpression('/^[a-zA-Z0-9]{' . WorkerLogger::WORKER_ID_LENGTH . '}+$/', $uid);
}
public function dataTest()