Skip to content

Commit 2c8ce8a

Browse files
committed
Fix PHP 5.3 compatibility.
1 parent df07e0e commit 2c8ce8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: testing/RedUNIT/Base/Bean.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Bean extends Base
3535
*/
3636
public function testTrimport()
3737
{
38-
$array = ['greeting'=>' hello ', 'to'=>' world '];
38+
$array = array('greeting'=>' hello ', 'to'=>' world ');
3939
$bean = R::dispense('greeting');
4040
$bean->trimport($array);
4141
asrt($bean->greeting,'hello');

0 commit comments

Comments
 (0)