Changeset 51568 for trunk/tests/phpunit/tests/customize/partial.php
- Timestamp:
- 08/07/2021 10:29:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/customize/partial.php
r51462 r51568 30 30 * Set up. 31 31 */ 32 function set Up() {33 parent::set Up();32 function set_up() { 33 parent::set_up(); 34 34 require_once ABSPATH . WPINC . '/class-wp-customize-manager.php'; 35 35 $GLOBALS['wp_customize'] = new WP_Customize_Manager(); … … 391 391 * Tear down. 392 392 */ 393 function tear Down() {393 function tear_down() { 394 394 $this->wp_customize = null; 395 395 unset( $GLOBALS['wp_customize'] ); 396 parent::tear Down();396 parent::tear_down(); 397 397 } 398 398 }
Note: See TracChangeset
for help on using the changeset viewer.