Skip to content

Commit ec3612b

Browse files
committed
var_dump cleanup
1 parent 983f529 commit ec3612b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Common/TracerTestTrait.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ public function inCli($scriptPath, $customEnvs = [], $customInis = [], $argument
220220
{
221221
$this->resetRequestDumper();
222222
$output = $this->executeCli($scriptPath, $customEnvs, $customInis, $arguments, $withOutput);
223-
var_dump($output);
224223
usleep(100000); // Add a slight delay to give the request-replayer time to handle and store all requests.
225224
$out = [$this->parseTracesFromDumpedData($until, $throw)];
226225
if ($withOutput) {

tests/Integrations/Kafka/KafkaTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class KafkaTest extends IntegrationTestCase
2020
public static function ddSetUpBeforeClass()
2121
{
2222
parent::ddSetUpBeforeClass();
23+
// Ensure topics (test-lowlevel and test-highlevel) are created
2324
$conf = new \RdKafka\Conf();
2425
$conf->set('bootstrap.servers', self::$host . ':' . self::$port);
2526
$producer = new \RdKafka\Producer($conf);
@@ -29,8 +30,8 @@ public static function ddSetUpBeforeClass()
2930
$topicConf->set('request.timeout.ms', (string) 5000);
3031
$topicLowLevel = $producer->newTopic('test-lowlevel', $topicConf);
3132
$topicHighLevel = $producer->newTopic('test-highlevel', $topicConf);
32-
var_dump($producer->getMetadata(false, $topicLowLevel, 5000));
33-
var_dump($producer->getMetadata(false, $topicHighLevel, 5000));
33+
$producer->getMetadata(false, $topicLowLevel, 5000);
34+
$producer->getMetadata(false, $topicHighLevel, 5000);
3435
}
3536

3637
public function testDistributedTracingHighLevel()

0 commit comments

Comments
 (0)