Changeset 13314 for trunk/tests/phpunit/testcases/core/templateLoader.php
- Timestamp:
- 08/13/2022 08:58:51 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/core/templateLoader.php
r12726 r13314 7 7 class BP_Tests_Template_Loader_Functions extends BP_UnitTestCase { 8 8 9 public function set Up() {9 public function set_up() { 10 10 if ( version_compare( bp_get_major_wp_version(), '5.5', '<' ) ) { 11 11 $this->markTestSkipped( … … 16 16 add_filter( 'bp_get_template_stack', array( $this, 'template_stack'), 10, 1 ); 17 17 18 parent::set Up();18 parent::set_up(); 19 19 } 20 20 21 public function tear Down() {21 public function tear_down() { 22 22 remove_filter( 'bp_get_template_stack', array( $this, 'template_stack'), 10, 1 ); 23 23 24 parent::tear Down();24 parent::tear_down(); 25 25 } 26 26
Note: See TracChangeset
for help on using the changeset viewer.