Adapt filesystem tests

This commit is contained in:
Philipp 2021-10-05 19:59:13 +02:00
parent ccd8895237
commit 7471b7698b
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
3 changed files with 33 additions and 7 deletions

View file

@ -54,7 +54,7 @@ class Filesystem implements IWritableStorage
$this->basePath = rtrim($path, '/');
if (!is_dir($this->basePath) || !is_writable($this->basePath)) {
throw new StorageException(sprintf('Path %s does not exist or is not writeable', $this->basePath));
throw new StorageException(sprintf('Path "%s" does not exist or is not writeable.', $this->basePath));
}
}