Skip to content

Commit

Permalink
Use array() instead of the short notation []
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Gunawan committed Aug 14, 2015
1 parent bf6574c commit 2eafcc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Utility/HashTest.php
Expand Up @@ -1476,7 +1476,7 @@ public function testSortRegularIgnoreCase() {
*/
public function testSortInvalidType() {
$toSort = array('a', 'b', 'c');
Hash::sort($toSort, '{n}', 'asc', ['regular'], true);
Hash::sort($toSort, '{n}', 'asc', array('regular'), true);
}

/**
Expand Down

0 comments on commit 2eafcc0

Please sign in to comment.