소스 검색

Fix build

Jordi Boggiano 5 년 전
부모
커밋
fc5682ed9f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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));
     }
 }