浏览代码

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));
     }
 }