Jordi Boggiano 5 éve
szülő
commit
fc5682ed9f
1 módosított fájl, 2 hozzáadás és 2 törlés
  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));
     }
 }