diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2021-03-16 12:50:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-16 12:50:07 +0100 |
commit | 7a09b7d60edfdb4426565667dfbc94b132fba034 (patch) | |
tree | 8ceb142710e78acea2f1884610d685c6718ff690 | |
parent | ccaa131e96fabb0e24ab6596d96de69411e7d955 (diff) | |
parent | c6d2d8746c42246f3b8cda07f52b0479aa79cff9 (diff) | |
download | nextcloud-server-7a09b7d60edfdb4426565667dfbc94b132fba034.tar.gz nextcloud-server-7a09b7d60edfdb4426565667dfbc94b132fba034.zip |
Merge pull request #26143 from nextcloud/techdebt/noid/fix-cs
Fix CS in CacheTest
-rw-r--r-- | apps/files_sharing/tests/CacheTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/tests/CacheTest.php b/apps/files_sharing/tests/CacheTest.php index a30409a0e37..ae8be7731fe 100644 --- a/apps/files_sharing/tests/CacheTest.php +++ b/apps/files_sharing/tests/CacheTest.php @@ -548,7 +548,7 @@ class CacheTest extends TestCase { self::loginHelper(self::TEST_FILES_SHARING_API_USER2); /** @var SharedStorage $sharedStorage */ - list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/sub'); + [$sharedStorage] = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/sub'); $results = $sharedStorage->getCache()->search("foo.txt"); $this->assertCount(1, $results); |