Browse Source

[InstallerTest] Fixed return status was always 0

Pascal Borreli 12 years ago
parent
commit
87bac43b9e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/Composer/Test/InstallerTest.php

+ 2 - 2
tests/Composer/Test/InstallerTest.php

@@ -197,7 +197,7 @@ class InstallerTest extends TestCase
         $application->get('install')->setCode(function ($input, $output) use ($installer) {
             $installer->setDevMode($input->getOption('dev'));
 
-            return $installer->run();
+            return $installer->run() ? 0 : 1;
         });
 
         $application->get('update')->setCode(function ($input, $output) use ($installer) {
@@ -206,7 +206,7 @@ class InstallerTest extends TestCase
                 ->setUpdate(true)
                 ->setUpdateWhitelist($input->getArgument('packages'));
 
-            return $installer->run();
+            return $installer->run() ? 0 : 1;
         });
 
         if (!preg_match('{^(install|update)\b}', $run)) {