Adapt filesystem tests

This commit is contained in:
Philipp
2021-10-05 19:59:13 +02:00
parent ccd8895237
commit 7471b7698b
3 changed files with 33 additions and 7 deletions
+1 -1
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));
}
}