From 43a9b5dc5edb65c864dc6cd75b428d912f54d494 Mon Sep 17 00:00:00 2001 From: piotrooo Date: Wed, 3 Apr 2019 22:08:02 +0200 Subject: [PATCH] Fixed phpunit.xml. --- phpunit.xml | 6 +++--- tests/OpenTracing/Mock/MockTracerTest.php | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/phpunit.xml b/phpunit.xml index 16563d9..d2515b0 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -11,16 +11,16 @@ convertWarningsToExceptions="true" forceCoversAnnotation="false" mapTestClassNameToCoveredClassName="false" - printerClass="PHPUnit_TextUI_ResultPrinter" + printerClass="PHPUnit\TextUI\ResultPrinter" processIsolation="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" stopOnRisky="false" - testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader" + testSuiteLoaderClass="PHPUnit\Runner\StandardTestSuiteLoader" timeoutForSmallTests="1" timeoutForMediumTests="10" timeoutForLargeTests="60" verbose="false"> - \ No newline at end of file + diff --git a/tests/OpenTracing/Mock/MockTracerTest.php b/tests/OpenTracing/Mock/MockTracerTest.php index 54a4979..55b5077 100644 --- a/tests/OpenTracing/Mock/MockTracerTest.php +++ b/tests/OpenTracing/Mock/MockTracerTest.php @@ -78,7 +78,6 @@ public function testExtractSuccess() $actualCarrier = null; $extractor = function ($carrier) use (&$actualCarrier) { - var_dump($actualCarrier); $actualCarrier = $carrier; return NoopSpan::create(); };