Changeset 51568 for trunk/tests/phpunit/tests/customize/manager.php
- Timestamp:
- 08/07/2021 10:29:41 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/customize/manager.php
r51462 r51568 54 54 * Set up test. 55 55 */ 56 function set Up() {57 parent::set Up();56 function set_up() { 57 parent::set_up(); 58 58 require_once ABSPATH . WPINC . '/class-wp-customize-manager.php'; 59 59 $this->manager = $this->instantiate(); … … 71 71 * Tear down test. 72 72 */ 73 function tear Down() {73 function tear_down() { 74 74 $this->manager = null; 75 75 unset( $GLOBALS['wp_customize'] ); 76 76 $_REQUEST = array(); 77 parent::tear Down();77 parent::tear_down(); 78 78 } 79 79
Note: See TracChangeset
for help on using the changeset viewer.