aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/tests/CacheTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/tests/CacheTest.php')
-rw-r--r--apps/files_sharing/tests/CacheTest.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/apps/files_sharing/tests/CacheTest.php b/apps/files_sharing/tests/CacheTest.php
index c5ce0107f80..94e5504aece 100644
--- a/apps/files_sharing/tests/CacheTest.php
+++ b/apps/files_sharing/tests/CacheTest.php
@@ -227,19 +227,19 @@ class CacheTest extends TestCase {
function testSearchByMime() {
$results = $this->sharedStorage->getCache()->searchByMime('text');
$check = [
- [
- 'name' => 'bar.txt',
- 'path' => 'bar.txt'
- ],
- [
- 'name' => 'another too.txt',
- 'path' => 'subdir/another too.txt'
- ],
- [
- 'name' => 'another.txt',
- 'path' => 'subdir/another.txt'
- ],
- ];
+ [
+ 'name' => 'bar.txt',
+ 'path' => 'bar.txt'
+ ],
+ [
+ 'name' => 'another too.txt',
+ 'path' => 'subdir/another too.txt'
+ ],
+ [
+ 'name' => 'another.txt',
+ 'path' => 'subdir/another.txt'
+ ],
+ ];
$this->verifyFiles($check, $results);
}