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