summaryrefslogtreecommitdiffstats
path: root/tests/unit/db/FolderTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/db/FolderTest.php')
-rw-r--r--tests/unit/db/FolderTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/db/FolderTest.php b/tests/unit/db/FolderTest.php
index 9c59cdeec..e2726e556 100644
--- a/tests/unit/db/FolderTest.php
+++ b/tests/unit/db/FolderTest.php
@@ -24,10 +24,10 @@ class FolderTest extends \PHPUnit_Framework_TestCase {
$folder->setId(3);
$folder->setName('name');
- $this->assertEquals(array(
+ $this->assertEquals([
'id' => 3,
'name' => 'name'
- ), $folder->toAPI());
+ ], $folder->toAPI());
}
} \ No newline at end of file