Changeset 51568 for trunk/tests/phpunit/tests/customize/setting.php
- Timestamp:
- 08/07/2021 10:29:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/customize/setting.php
r51331 r51568 18 18 public $undefined; 19 19 20 function set Up() {21 parent::set Up();20 function set_up() { 21 parent::set_up(); 22 22 require_once ABSPATH . WPINC . '/class-wp-customize-manager.php'; 23 23 $GLOBALS['wp_customize'] = new WP_Customize_Manager(); … … 26 26 } 27 27 28 function tear Down() {28 function tear_down() { 29 29 $this->manager = null; 30 30 unset( $GLOBALS['wp_customize'] ); 31 parent::tear Down();31 parent::tear_down(); 32 32 } 33 33
Note: See TracChangeset
for help on using the changeset viewer.