Changeset 57987 for trunk/tests/phpunit/tests/image/intermediateSize.php
- Timestamp:
- 04/12/2024 05:45:23 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/image/intermediateSize.php
r56559 r57987 115 115 */ 116 116 public function test_get_intermediate_sizes_by_array_exact() { 117 // Only one dimen tion match shouldn't return false positive (see: #17626).117 // Only one dimension match shouldn't return false positive (see: #17626). 118 118 add_image_size( 'test-size', 330, 220, true ); 119 119 add_image_size( 'false-height', 330, 400, true ); … … 185 185 $width = 300; 186 186 187 // Only one dimen tion match shouldn't return false positive (see: #17626).187 // Only one dimension match shouldn't return false positive (see: #17626). 188 188 add_image_size( 'test-size', $width, 0, false ); 189 189 add_image_size( 'false-height', $width, 100, true ); … … 214 214 $height = 202; 215 215 216 // Only one dimen tion match shouldn't return false positive (see: #17626).216 // Only one dimension match shouldn't return false positive (see: #17626). 217 217 add_image_size( 'test-size', 0, $height, false ); 218 218 add_image_size( 'false-height', 300, $height, true );
Note: See TracChangeset
for help on using the changeset viewer.