replace the deprecated assertDirectoryNotExists() method

This commit is contained in:
Christian Flothmann 2020-08-17 14:24:05 +02:00
parent 58166dfd75
commit 9fd8a940e0

View File

@ -825,7 +825,7 @@ class FilesystemTest extends FilesystemTestCase
$this->assertFalse(is_link($link)); $this->assertFalse(is_link($link));
$this->assertFalse(is_file($link)); $this->assertFalse(is_file($link));
$this->assertDirectoryNotExists($link); $this->assertDirectoryDoesNotExist($link);
} }
public function testSymlinkIsOverwrittenIfPointsToDifferentTarget() public function testSymlinkIsOverwrittenIfPointsToDifferentTarget()