1
0
mirror of https://github.com/rlanvin/php-rrule.git synced 2025-02-20 09:54:16 +01:00

Fix test failing with PHP 5.3

This commit is contained in:
rlanvin 2017-02-03 00:39:19 +02:00
parent c29db6270e
commit 0714c4b97d

View File

@ -2590,6 +2590,6 @@ class RRuleTest extends PHPUnit_Framework_TestCase
public function testHumanReadable($rrule,$locale, $string)
{
$rrule = new RRule($rrule);
$this->assertEquals($string, $rrule->humanReadable(['locale' => $locale]));
$this->assertEquals($string, $rrule->humanReadable(array('locale' => $locale)));
}
}