diff options
Diffstat (limited to 'tests/lib/Lockdown/Filesystem/NullStorageTest.php')
-rw-r--r-- | tests/lib/Lockdown/Filesystem/NullStorageTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Lockdown/Filesystem/NullStorageTest.php b/tests/lib/Lockdown/Filesystem/NullStorageTest.php index a0b9b04ad1a..21cb0f75bb6 100644 --- a/tests/lib/Lockdown/Filesystem/NullStorageTest.php +++ b/tests/lib/Lockdown/Filesystem/NullStorageTest.php @@ -96,7 +96,7 @@ class NullStorageTest extends TestCase { } public function testGetPermissions(): void { - $this->assertNull($this->storage->getPermissions('foo')); + $this->assertEquals(0, $this->storage->getPermissions('foo')); } public function testFile_exists(): void { |