diff --git a/tests/Integrations/Symfony/V6_2/MessengerTest.php b/tests/Integrations/Symfony/V6_2/MessengerTest.php index 5d72c6e8ec3..46666976dac 100644 --- a/tests/Integrations/Symfony/V6_2/MessengerTest.php +++ b/tests/Integrations/Symfony/V6_2/MessengerTest.php @@ -49,7 +49,7 @@ public function testAsyncSuccess() $this->call($spec); }, self::FIELDS_TO_IGNORE); - list($consumerTraces, $output) = $this->inCli(self::getConsoleScript(), [ + list($consumerTraces) = $this->inCli(self::getConsoleScript(), [ 'DD_TRACE_CLI_ENABLED' => 'true', 'DD_TRACE_EXEC_ENABLED' => 'false', 'DD_SERVICE' => 'symfony_messenger_test', @@ -58,7 +58,7 @@ public function testAsyncSuccess() 'DD_TRACE_DEBUG' => 'true', 'DD_INSTRUMENTATION_TELEMETRY_ENABLED' => 'false', 'DD_TRACE_PHPREDIS_ENABLED' => 'false' // We are NOT testing the phpredis integration - ], [], ['mess:cons', 'async', '--limit=1'], true); + ], [], ['mess:cons', 'async', '--limit=1']); $this->snapshotFromTraces( $consumerTraces, @@ -75,7 +75,7 @@ public function testAsyncFailure() $this->call($spec); }, self::FIELDS_TO_IGNORE); - list($consumerTraces, $output) = $this->inCli(self::getConsoleScript(), [ + list($consumerTraces) = $this->inCli(self::getConsoleScript(), [ 'DD_TRACE_CLI_ENABLED' => 'true', 'DD_TRACE_EXEC_ENABLED' => 'false', 'DD_SERVICE' => 'symfony_messenger_test', @@ -83,7 +83,7 @@ public function testAsyncFailure() 'DD_TRACE_SYMFONY_MESSENGER_MIDDLEWARES' => 'true', 'DD_INSTRUMENTATION_TELEMETRY_ENABLED' => 'false', 'DD_TRACE_PHPREDIS_ENABLED' => 'false' // We are NOT testing the phpredis integration - ], [], ['messenger:consume', 'async', '--limit=1'], true); + ], [], ['messenger:consume', 'async', '--limit=1']); $this->snapshotFromTraces( $consumerTraces,