Changeset 35242 for trunk/tests/phpunit/tests/customize/section.php
- Timestamp:
- 10/17/2015 06:02:16 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/customize/section.php
r35225 r35242 136 136 */ 137 137 function test_check_capabilities() { 138 $user_id = self:: $factory->user->create( array( 'role' => 'administrator' ) );138 $user_id = self::factory()->user->create( array( 'role' => 'administrator' ) ); 139 139 wp_set_current_user( $user_id ); 140 140 … … 162 162 */ 163 163 function test_maybe_render() { 164 wp_set_current_user( self:: $factory->user->create( array( 'role' => 'administrator' ) ) );164 wp_set_current_user( self::factory()->user->create( array( 'role' => 'administrator' ) ) ); 165 165 $section = new WP_Customize_Section( $this->manager, 'bar' ); 166 166 $customize_render_section_count = did_action( 'customize_render_section' ); … … 187 187 */ 188 188 function test_print_templates_standard() { 189 wp_set_current_user( self:: $factory->user->create( array( 'role' => 'administrator' ) ) );189 wp_set_current_user( self::factory()->user->create( array( 'role' => 'administrator' ) ) ); 190 190 191 191 $section = new WP_Customize_Section( $this->manager, 'baz' ); … … 202 202 */ 203 203 function test_print_templates_custom() { 204 wp_set_current_user( self:: $factory->user->create( array( 'role' => 'administrator' ) ) );204 wp_set_current_user( self::factory()->user->create( array( 'role' => 'administrator' ) ) ); 205 205 206 206 $section = new Custom_Section_Test( $this->manager, 'baz' );
Note: See TracChangeset
for help on using the changeset viewer.