aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-09-16 16:00:30 +0200
committerprovokateurin <kate@provokateurin.de>2024-09-17 10:10:50 +0200
commit8ca6fcace7dc22230a7afe84936ca01470f50d00 (patch)
treefd6867b712621f7a9969bd190ef3b2f2499984d3 /tests
parentc256518ab3cb61d046ee10edf1c3b18218ee8ff6 (diff)
downloadnextcloud-server-8ca6fcace7dc22230a7afe84936ca01470f50d00.tar.gz
nextcloud-server-8ca6fcace7dc22230a7afe84936ca01470f50d00.zip
fix(Storage): Document getOwner() can return false
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Lockdown/Filesystem/NullStorageTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Lockdown/Filesystem/NullStorageTest.php b/tests/lib/Lockdown/Filesystem/NullStorageTest.php
index cc65221d0a3..a0b9b04ad1a 100644
--- a/tests/lib/Lockdown/Filesystem/NullStorageTest.php
+++ b/tests/lib/Lockdown/Filesystem/NullStorageTest.php
@@ -219,7 +219,7 @@ class NullStorageTest extends TestCase {
}
public function testGetOwner(): void {
- $this->assertNull($this->storage->getOwner('foo'));
+ $this->assertFalse($this->storage->getOwner('foo'));
}
public function testGetCache(): void {