mirror of
https://github.com/nextcloud/server.git
synced 2026-05-26 11:22:28 -04:00
Fix array access syntax for older PHP
There was a syntax error when running tests in PHP 5.3.10.
This commit is contained in:
parent
4c1510b729
commit
bc22799160
1 changed files with 3 additions and 2 deletions
5
tests/lib/files/cache/cache.php
vendored
5
tests/lib/files/cache/cache.php
vendored
|
|
@ -169,8 +169,9 @@ class Cache extends \PHPUnit_Framework_TestCase {
|
|||
|
||||
$this->assertEquals(916, $this->cache->calculateFolderSize($file1));
|
||||
// direct cache entry retrieval returns the original values
|
||||
$this->assertEquals(1025, $this->cache->get($file1)['size']);
|
||||
$this->assertEquals(916, $this->cache->get($file1)['unencrypted_size']);
|
||||
$entry = $this->cache->get($file1);
|
||||
$this->assertEquals(1025, $entry['size']);
|
||||
$this->assertEquals(916, $entry['unencrypted_size']);
|
||||
|
||||
$this->cache->remove($file2);
|
||||
$this->cache->remove($file3);
|
||||
|
|
|
|||
Loading…
Reference in a new issue