Changeset 56559 for trunk/tests/phpunit/tests/file.php
- Timestamp:
- 09/12/2023 03:21:02 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/file.php
r56186 r56559 252 252 add_filter( 253 253 'random_password', 254 static function () {254 static function () { 255 255 return '123456'; 256 256 }, … … 286 286 add_filter( 287 287 'random_password', 288 static function () {288 static function () { 289 289 return '1a2b3c4d5e6f'; 290 290 }, … … 322 322 add_filter( 323 323 'wp_unique_filename', 324 static function ( $filename ) use ( &$filenames_over_limit ) {324 static function ( $filename ) use ( &$filenames_over_limit ) { 325 325 if ( strlen( $filename ) === 252 ) { 326 326 $filename .= '1'; … … 358 358 add_filter( 359 359 'random_password', 360 static function () {360 static function () { 361 361 return '1a2b3c4d5e6f'; 362 362 }, … … 376 376 add_filter( 377 377 'wp_unique_filename', 378 static function ( $filename ) use ( &$filenames_over_limit ) {378 static function ( $filename ) use ( &$filenames_over_limit ) { 379 379 if ( strlen( $filename ) === 252 ) { 380 380 $filename .= '1';
Note: See TracChangeset
for help on using the changeset viewer.