diff options
author | Robin Appelman <robin@icewind.nl> | 2017-03-08 15:17:39 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-03-08 16:30:55 +0100 |
commit | e61606a767cd6e2c28e3897e7e913e39371078e5 (patch) | |
tree | b2d0cf869dae5f4cce698ca647f827aab178aaa0 /apps/dav/tests | |
parent | 2a8e922d67a1246e101f926f1b0ab287db71929e (diff) | |
download | nextcloud-server-e61606a767cd6e2c28e3897e7e913e39371078e5.tar.gz nextcloud-server-e61606a767cd6e2c28e3897e7e913e39371078e5.zip |
Allow searching for favorites
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/dav/tests')
-rw-r--r-- | apps/dav/tests/unit/Files/FileSearchBackendTest.php | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/apps/dav/tests/unit/Files/FileSearchBackendTest.php b/apps/dav/tests/unit/Files/FileSearchBackendTest.php index 24b9a9c51e6..539344b22d5 100644 --- a/apps/dav/tests/unit/Files/FileSearchBackendTest.php +++ b/apps/dav/tests/unit/Files/FileSearchBackendTest.php @@ -122,7 +122,8 @@ class FileSearchBackendTest extends TestCase { ), 0, 0, - [] + [], + $this->user )) ->will($this->returnValue([ new \OC\Files\Node\Folder($this->rootFolder, $this->view, '/test/path') @@ -150,7 +151,8 @@ class FileSearchBackendTest extends TestCase { ), 0, 0, - [] + [], + $this->user )) ->will($this->returnValue([ new \OC\Files\Node\Folder($this->rootFolder, $this->view, '/test/path') @@ -178,7 +180,8 @@ class FileSearchBackendTest extends TestCase { ), 0, 0, - [] + [], + $this->user )) ->will($this->returnValue([ new \OC\Files\Node\Folder($this->rootFolder, $this->view, '/test/path') @@ -206,7 +209,8 @@ class FileSearchBackendTest extends TestCase { ), 0, 0, - [] + [], + $this->user )) ->will($this->returnValue([ new \OC\Files\Node\Folder($this->rootFolder, $this->view, '/test/path') @@ -234,7 +238,8 @@ class FileSearchBackendTest extends TestCase { ), 0, 0, - [] + [], + $this->user )) ->will($this->returnValue([ new \OC\Files\Node\Folder($this->rootFolder, $this->view, '/test/path') |