Changeset 51331 for trunk/tests/phpunit/tests/image/intermediateSize.php
- Timestamp:
- 07/05/2021 05:21:53 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/image/intermediateSize.php
r50951 r51331 35 35 $image = image_make_intermediate_size( DIR_TESTDATA . '/images/a2-small.jpg', 100, 0, false ); 36 36 37 $this->assertI nternalType( 'array',$image );37 $this->assertIsArray( $image ); 38 38 } 39 39 … … 44 44 $image = image_make_intermediate_size( DIR_TESTDATA . '/images/a2-small.jpg', 0, 75, false ); 45 45 46 $this->assertI nternalType( 'array',$image );46 $this->assertIsArray( $image ); 47 47 } 48 48 … … 55 55 unlink( DIR_TESTDATA . '/images/a2-small-100x75.jpg' ); 56 56 57 $this->assertI nternalType( 'array',$image );57 $this->assertIsArray( $image ); 58 58 $this->assertSame( 100, $image['width'] ); 59 59 $this->assertSame( 75, $image['height'] );
Note: See TracChangeset
for help on using the changeset viewer.