Changeset 46689 for trunk/tests/phpunit/tests/actions.php
- Timestamp:
- 11/09/2019 01:55:43 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/actions.php
r46586 r46689 547 547 548 548 add_action( 'tests_do_action_deprecated', array( __CLASS__, 'deprecated_action_callback' ) ); 549 do_action_deprecated( 'tests_do_action_deprecated', array( $p ), '4.6 ' );549 do_action_deprecated( 'tests_do_action_deprecated', array( $p ), '4.6.0' ); 550 550 remove_action( 'tests_do_action_deprecated', array( __CLASS__, 'deprecated_action_callback' ) ); 551 551 … … 566 566 567 567 add_action( 'tests_do_action_deprecated', array( __CLASS__, 'deprecated_action_callback_multiple_params' ), 10, 2 ); 568 do_action_deprecated( 'tests_do_action_deprecated', array( $p1, $p2 ), '4.6 ' );568 do_action_deprecated( 'tests_do_action_deprecated', array( $p1, $p2 ), '4.6.0' ); 569 569 remove_action( 'tests_do_action_deprecated', array( __CLASS__, 'deprecated_action_callback_multiple_params' ), 10, 2 ); 570 570
Note: See TracChangeset
for help on using the changeset viewer.