From 88eb61c1d8031e11987fd6f2821c9ec70dc2b527 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 23 Nov 2019 13:18:09 +0100 Subject: [PATCH] Fix 5.3 syntax --- tests/Composer/Test/Installer/InstallationManagerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Composer/Test/Installer/InstallationManagerTest.php b/tests/Composer/Test/Installer/InstallationManagerTest.php index dfa0c06cb..9e12ec215 100644 --- a/tests/Composer/Test/Installer/InstallationManagerTest.php +++ b/tests/Composer/Test/Installer/InstallationManagerTest.php @@ -114,7 +114,7 @@ class InstallationManagerTest extends TestCase ->with($this->repository, $updateOperation); $manager->addInstaller(new NoopInstaller()); - $manager->execute($this->repository, [$installOperation, $removeOperation, $updateOperation]); + $manager->execute($this->repository, array($installOperation, $removeOperation, $updateOperation)); } public function testInstall()