diff options
Diffstat (limited to 'tests/Monolog/Processor/MercurialProcessorTest.php')
-rw-r--r-- | tests/Monolog/Processor/MercurialProcessorTest.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/Monolog/Processor/MercurialProcessorTest.php b/tests/Monolog/Processor/MercurialProcessorTest.php index 11f2b35..9028e41 100644 --- a/tests/Monolog/Processor/MercurialProcessorTest.php +++ b/tests/Monolog/Processor/MercurialProcessorTest.php @@ -1,9 +1,9 @@ -<?php +<?php declare(strict_types=1); /* * This file is part of the Monolog package. * - * (c) Jonathan A. Schweder <jonathanschweder@gmail.com> + * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. @@ -11,7 +11,7 @@ namespace Monolog\Processor; -use Monolog\TestCase; +use Monolog\Test\TestCase; class MercurialProcessorTest extends TestCase { @@ -27,6 +27,7 @@ class MercurialProcessorTest extends TestCase } if ($result != 0) { $this->markTestSkipped('hg is missing'); + return; } |