Changeset 51568 for trunk/tests/phpunit/tests/multisite/network.php
- Timestamp:
- 08/07/2021 10:29:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/network.php
r51454 r51568 16 16 protected static $different_site_ids = array(); 17 17 18 function set Up() {18 function set_up() { 19 19 global $wpdb; 20 parent::set Up();20 parent::set_up(); 21 21 $this->suppress = $wpdb->suppress_errors(); 22 22 } 23 23 24 function tear Down() {24 function tear_down() { 25 25 global $wpdb, $current_site; 26 26 $wpdb->suppress_errors( $this->suppress ); 27 27 $current_site->id = 1; 28 parent::tear Down();28 parent::tear_down(); 29 29 } 30 30
Note: See TracChangeset
for help on using the changeset viewer.