Changeset 52389 for trunk/tests/phpunit/tests/hooks/applyFilters.php
- Timestamp:
- 12/19/2021 01:42:37 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/hooks/applyFilters.php
r50342 r52389 14 14 $hook = new WP_Hook(); 15 15 $tag = __FUNCTION__; 16 $priority = rand( 1, 100 );17 $accepted_args = rand( 1, 100 );16 $priority = 1; 17 $accepted_args = 2; 18 18 $arg = __FUNCTION__ . '_arg'; 19 19 … … 31 31 $hook = new WP_Hook(); 32 32 $tag = __FUNCTION__; 33 $priority = rand( 1, 100 );34 $accepted_args = rand( 1, 100 );33 $priority = 1; 34 $accepted_args = 2; 35 35 $arg = __FUNCTION__ . '_arg'; 36 36
Note: See TracChangeset
for help on using the changeset viewer.