mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
ba5b6089d5
In PHPUnit 9.1, the following regexp-related assertions have been deprecated and there are new alternatives for all them: - assertRegExp() -> assertMatchesRegularExpression() - assertNotRegExp() -> assertDoesNotMatchRegularExpression() This is about to, simply, move all cases to the new alternatives. Source: https://github.com/sebastianbergmann/phpunit/blob/9.1.0/ChangeLog-9.1.md Regexp to find all them: ag 'assertRegExp|assertNotRegExp' -li