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