Changeset 51869 for trunk/tests/phpunit/tests/multisite/getSpaceAllowed.php
- Timestamp:
- 09/25/2021 01:27:47 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/getSpaceAllowed.php
r51860 r51869 9 9 */ 10 10 class Tests_Multisite_GetSpaceAllowed extends WP_UnitTestCase { 11 protected $suppress = false;12 13 public function set_up() {14 global $wpdb;15 parent::set_up();16 $this->suppress = $wpdb->suppress_errors();17 }18 19 public function tear_down() {20 global $wpdb;21 22 $wpdb->suppress_errors( $this->suppress );23 parent::tear_down();24 }25 11 26 12 /**
Note: See TracChangeset
for help on using the changeset viewer.