diff --git a/tests/TestCase.php b/tests/TestCase.php index 1b9e9e0..e6b34e7 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -4,7 +4,6 @@ declare(strict_types=1); namespace WPMultiCity\Tests; use Brain\Monkey; -use Mockery; use PHPUnit\Framework\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase @@ -18,7 +17,6 @@ abstract class TestCase extends BaseTestCase protected function tearDown(): void { Monkey\tearDown(); - Mockery::close(); parent::tearDown(); } }