From 6301a2ebc788fe7c8d8a1552d558e9f3fbb3c350 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Wed, 14 Dec 2022 22:54:15 -0800 Subject: [PATCH] CiviUnitTestCase - Remove ancient/unused property '$_dbName' --- tests/phpunit/CiviTest/CiviUnitTestCase.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/phpunit/CiviTest/CiviUnitTestCase.php b/tests/phpunit/CiviTest/CiviUnitTestCase.php index 4ec5c81e5e..ec409a222e 100644 --- a/tests/phpunit/CiviTest/CiviUnitTestCase.php +++ b/tests/phpunit/CiviTest/CiviUnitTestCase.php @@ -90,13 +90,6 @@ class CiviUnitTestCase extends PHPUnit\Framework\TestCase { */ protected $_dbconn; - /** - * The database name. - * - * @var string - */ - static protected $_dbName; - /** * API version in use. * @@ -241,8 +234,6 @@ class CiviUnitTestCase extends PHPUnit\Framework\TestCase { // we need full error reporting error_reporting(E_ALL & ~E_NOTICE); - self::$_dbName = self::getDBName(); - // also load the class loader require_once 'CRM/Core/ClassLoader.php'; CRM_Core_ClassLoader::singleton()->register(); -- 2.25.1