From 71722ee9aaf82eb6cc4ae790d8f5adaa08476220 Mon Sep 17 00:00:00 2001 From: Alex Rock Ancelet Date: Sun, 15 Apr 2018 15:46:59 +0200 Subject: [PATCH] Delete $baseUri on test teardown --- src/PanthereTestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PanthereTestCase.php b/src/PanthereTestCase.php index abd80994..01a24e91 100644 --- a/src/PanthereTestCase.php +++ b/src/PanthereTestCase.php @@ -80,6 +80,8 @@ public static function tearDownAfterClass() if (null !== self::$goutteClient) { self::$goutteClient = null; } + + self::$baseUri = null; } protected static function startWebServer(?string $webServerDir = null): void