Browse Source

Fix 5.3 syntax

Jordi Boggiano 5 years ago
parent
commit
88eb61c1d8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/Composer/Test/Installer/InstallationManagerTest.php

+ 1 - 1
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()