From 2e7ed741b69008bcf742aa35c2aafbbf47f8d597 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Fri, 29 May 2020 22:33:05 +0200 Subject: [PATCH] fix: keeps result from plugin to plugin --- src/Console/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Command.php b/src/Console/Command.php index d496a810..b4dc3c75 100644 --- a/src/Console/Command.php +++ b/src/Console/Command.php @@ -133,7 +133,7 @@ final class Command extends BaseCommand /** @var AddsOutput $plugin */ foreach ($plugins as $plugin) { - $plugin->addOutput($this->testSuite, $this->output, $result); + $result = $plugin->addOutput($this->testSuite, $this->output, $result); } exit($result);