MDL-71036 phpunit: Renamed various file-related assertions
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'
This commit is contained in:
Vendored
+1
-1
@@ -1321,7 +1321,7 @@ class core_cache_testcase extends advanced_testcase {
|
||||
// The config file will not exist yet as we've not done anything with the cache.
|
||||
// reset_all_data removes the file and without a call to create a configuration it doesn't exist
|
||||
// as yet.
|
||||
$this->assertFileNotExists($configfile);
|
||||
$this->assertFileDoesNotExist($configfile);
|
||||
|
||||
// Disable the cache
|
||||
cache_phpunit_factory::phpunit_disable();
|
||||
|
||||
Reference in New Issue
Block a user