Skip to content

Commit

Permalink
style: Remove debug params
Browse files Browse the repository at this point in the history
  • Loading branch information
PROFeNoM committed Nov 15, 2024
1 parent 77856e4 commit 96a5fe2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Integrations/Symfony/V6_2/MessengerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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,
Expand All @@ -75,15 +75,15 @@ 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',
'DD_TRACE_REMOVE_AUTOINSTRUMENTATION_ORPHANS' => 'true',
'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,
Expand Down

0 comments on commit 96a5fe2

Please sign in to comment.