From cce73768b39f1103f665c74d0f5c368c71d36883 Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Wed, 7 Oct 2015 07:24:47 +0000 Subject: [PATCH] Tests: Remove static capture of space used and space allowed. Originally introduced in [34601], this was necessary to avoid test pollution. Now that things have been separated and written to play nicely, we can remove this. See #34037. git-svn-id: https://develop.svn.wordpress.org/trunk@34902 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/multisite/site.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/phpunit/tests/multisite/site.php b/tests/phpunit/tests/multisite/site.php index 0c48d1d334..dd96afef39 100644 --- a/tests/phpunit/tests/multisite/site.php +++ b/tests/phpunit/tests/multisite/site.php @@ -11,16 +11,6 @@ if ( is_multisite() ) : class Tests_Multisite_Site extends WP_UnitTestCase { protected $suppress = false; - protected static $space_used; - protected static $space_allowed; - - public static function setUpBeforeClass() { - parent::setUpBeforeClass(); - - self::$space_allowed = get_space_allowed(); - self::$space_used = get_space_used(); - } - function setUp() { global $wpdb; parent::setUp();