Changeset 51568 for trunk/tests/phpunit/tests/multisite/getSpaceUsed.php
- Timestamp:
- 08/07/2021 10:29:41 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/getSpaceUsed.php
r48937 r51568 10 10 protected $suppress = false; 11 11 12 function set Up() {12 function set_up() { 13 13 global $wpdb; 14 parent::set Up();14 parent::set_up(); 15 15 $this->suppress = $wpdb->suppress_errors(); 16 16 } 17 17 18 function tear Down() {18 function tear_down() { 19 19 global $wpdb; 20 20 $wpdb->suppress_errors( $this->suppress ); 21 parent::tear Down();21 parent::tear_down(); 22 22 } 23 23
Note: See TracChangeset
for help on using the changeset viewer.