aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Lockdown/Filesystem/NullCacheTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Lockdown/Filesystem/NullCacheTest.php')
-rw-r--r--tests/lib/Lockdown/Filesystem/NullCacheTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/Lockdown/Filesystem/NullCacheTest.php b/tests/lib/Lockdown/Filesystem/NullCacheTest.php
index 5e120e9bdc7..505951ea2ef 100644
--- a/tests/lib/Lockdown/Filesystem/NullCacheTest.php
+++ b/tests/lib/Lockdown/Filesystem/NullCacheTest.php
@@ -1,4 +1,5 @@
<?php
+
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
@@ -27,7 +28,7 @@ class NulLCacheTest extends \Test\TestCase {
}
public function testGetEmpty(): void {
- $this->assertNull($this->cache->get('foo'));
+ $this->assertFalse($this->cache->get('foo'));
}
public function testGet(): void {