diff --git a/src/Concerns/Testable.php b/src/Concerns/Testable.php index 91b73d72d..d8137311e 100644 --- a/src/Concerns/Testable.php +++ b/src/Concerns/Testable.php @@ -73,7 +73,8 @@ public function __construct(Closure $test, string $description, array $data) { $this->__test = $test; $this->__description = $description; - self::$beforeAll = self::$afterAll = null; + self::$beforeAll = null; + self::$afterAll = null; parent::__construct('__test', $data); }