aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Files/Node/IntegrationTest.php
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-03-26 16:35:30 +0100
committerGitHub <noreply@github.com>2020-03-26 16:35:30 +0100
commit0c3e2fac54602926cfa1a0965650481dcaf86743 (patch)
treeec20e0ffa2f86b9b54939a83a785407319f94559 /tests/lib/Files/Node/IntegrationTest.php
parent62403d0932be7d620c7bdadc6b4e13eb496fcd6f (diff)
parentb80ebc96748b45fd2e0ba9323308657c4b00b7ec (diff)
downloadnextcloud-server-0c3e2fac54602926cfa1a0965650481dcaf86743.tar.gz
nextcloud-server-0c3e2fac54602926cfa1a0965650481dcaf86743.zip
Merge pull request #20168 from nextcloud/techdebt/short-array-syntax
Use the short array syntax, everywhere
Diffstat (limited to 'tests/lib/Files/Node/IntegrationTest.php')
-rw-r--r--tests/lib/Files/Node/IntegrationTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Files/Node/IntegrationTest.php b/tests/lib/Files/Node/IntegrationTest.php
index 2a542a1097a..26cdf398d94 100644
--- a/tests/lib/Files/Node/IntegrationTest.php
+++ b/tests/lib/Files/Node/IntegrationTest.php
@@ -57,8 +57,8 @@ class IntegrationTest extends \Test\TestCase {
$this->createMock(ILogger::class),
$this->createMock(IUserManager::class)
);
- $storage = new Temporary(array());
- $subStorage = new Temporary(array());
+ $storage = new Temporary([]);
+ $subStorage = new Temporary([]);
$this->storages[] = $storage;
$this->storages[] = $subStorage;
$this->root->mount($storage, '/');