[Stopwatch] Fix array definition from 5.4

This commit is contained in:
Alexander Kotynia 2013-04-17 10:17:10 +03:00
parent 78b060961a
commit 35a3c65db9
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class StopwatchTest extends \PHPUnit_Framework_TestCase
array(
'foo' =>
$this->getMockBuilder('Symfony\Component\Stopwatch\StopwatchEvent')
->setConstructorArgs([microtime(true) * 1000])
->setConstructorArgs(array(microtime(true) * 1000))
->getMock())
);