diff --git a/tests/lib/Lockdown/Filesystem/NullStorageTest.php b/tests/lib/Lockdown/Filesystem/NullStorageTest.php
index dc99eb4c03aa8c236fe29dc7c113109ac4a332a4..c6faf325cd43f93d92533833d312410735387c67 100644
--- a/tests/lib/Lockdown/Filesystem/NullStorageTest.php
+++ b/tests/lib/Lockdown/Filesystem/NullStorageTest.php
@@ -27,6 +27,7 @@ use Icewind\Streams\IteratorDirectory;
 use OC\ForbiddenException;
 use OC\Lockdown\Filesystem\NullCache;
 use OC\Lockdown\Filesystem\NullStorage;
+use OC\Files\FileInfo;
 use OCP\Files\Storage;
 use Test\TestCase;
 
@@ -182,7 +183,7 @@ class NullStorageTest extends TestCase  {
 	}
 
 	public function testFree_space() {
-		$this->assertSame(0, $this->storage->free_space('foo'));
+		$this->assertSame(FileInfo::SPACE_UNKNOWN, $this->storage->free_space('foo'));
 	}
 
 	public function testTouch() {