mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
309a65a6f7
In PHPUnit 9.1, the following file-related assertions have been deprecated and there are new alternatives for all them: - assertNotIsReadable() -> assertIsNotReadable() - assertNotIsWritable() -> assertIsNotWritable() - assertDirectoryNotExists() -> assertDirectoryDoesNotExist() - assertDirectoryNotIsReadable()-> assertDirectoryIsNotReadable() - assertDirectoryNotIsWritable()-> assertDirectoryIsNotWritable() - assertFileNotExists() -> assertFileDoesNotExist() - assertFileNotIsReadable() -> assertFileIsNotReadable() - assertFileNotIsWritable() -> assertFileIsNotWritable() 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 'assertNotIsReadable|assertNotIsWritable|assertDirectoryNotExists|\ assertDirectoryNotIsReadable|assertDirectoryNotIsWritable|\ assertFileNotExists|assertFileNotIsReadable|assertFileNotIsWritable'