1
0
Fork 0

Fix PHP 5.3 compatibility

pull/6430/head
Martin Hasoň 2017-05-19 12:36:19 +02:00
parent 92f7543222
commit d1ba698291
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class RepositoryFactoryTest extends TestCase
$ref->setAccessible(true); $ref->setAccessible(true);
$repositoryClasses = $ref->getValue($manager); $repositoryClasses = $ref->getValue($manager);
$this->assertEquals([ $this->assertEquals(array(
'composer', 'composer',
'vcs', 'vcs',
'package', 'package',
@ -42,6 +42,6 @@ class RepositoryFactoryTest extends TestCase
'hg', 'hg',
'artifact', 'artifact',
'path', 'path',
], array_keys($repositoryClasses)); ), array_keys($repositoryClasses));
} }
} }