We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 518302d commit 6848044Copy full SHA for 6848044
1 file changed
compiler/tests/Console/CompileCommandTest.php
@@ -44,11 +44,11 @@ public function testCommand(): void
44
45
$command = $application->find('phpstan:compile');
46
$commandTester = new CommandTester($command);
47
- $commandTester->execute([
+ $exitCode = $commandTester->execute([
48
'command' => $command->getName(),
49
]);
50
51
- self::assertSame('', $commandTester->getDisplay());
+ self::assertSame(0, $exitCode);
52
}
53
54
0 commit comments