Changeset 51568 for trunk/tests/phpunit/includes/testcase-xmlrpc.php
- Timestamp:
- 08/07/2021 10:29:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/testcase-xmlrpc.php
r49268 r51568 7 7 protected $myxmlrpcserver; 8 8 9 function set Up() {10 parent::set Up();9 function set_up() { 10 parent::set_up(); 11 11 12 12 add_filter( 'pre_option_enable_xmlrpc', '__return_true' ); … … 15 15 } 16 16 17 function tear Down() {17 function tear_down() { 18 18 remove_filter( 'pre_option_enable_xmlrpc', '__return_true' ); 19 19 20 20 $this->remove_added_uploads(); 21 21 22 parent::tear Down();22 parent::tear_down(); 23 23 } 24 24
Note: See TracChangeset
for help on using the changeset viewer.