Ver Fonte

Fix build

Jordi Boggiano há 5 anos atrás
pai
commit
fc5682ed9f
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      tests/Composer/Test/Command/ArchiveCommandTest.php

+ 2 - 2
tests/Composer/Test/Command/ArchiveCommandTest.php

@@ -95,9 +95,9 @@ class ArchiveCommandTest extends TestCase
                 null,
                 false,
                 null
-            );
+            )->willReturn(0);
         $command->method('isInteractive')->willReturn(false);
 
-        $command->run($input, $output);
+        $this->assertEquals(0, $command->run($input, $output));
     }
 }