From 96a5fe2c96c639c6e8d5c5ed2be40e793e6314a4 Mon Sep 17 00:00:00 2001 From: Alexandre Choura Date: Fri, 15 Nov 2024 17:12:56 +0100 Subject: [PATCH] style: Remove debug params --- tests/Integrations/Symfony/V6_2/MessengerTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Integrations/Symfony/V6_2/MessengerTest.php b/tests/Integrations/Symfony/V6_2/MessengerTest.php index 5d72c6e8ec..46666976da 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,