Ticket #46073: imagick-test.diff
File imagick-test.diff, 929 bytes (added by , 6 years ago) |
---|
-
tests/phpunit/tests/image/editorImagick.php
433 433 434 434 $imagick_image_editor->rotate( 180 ); 435 435 436 $this->assertEquals( $color_top_left, $property->getValue( $imagick_image_editor )->getImagePixelColor( 9 9, 99)->getColor() );436 $this->assertEquals( $color_top_left, $property->getValue( $imagick_image_editor )->getImagePixelColor( 98, 98 )->getColor() ); 437 437 } 438 438 439 439 /** … … 452 452 453 453 $imagick_image_editor->flip( true, false ); 454 454 455 $this->assertEquals( $color_top_left, $property->getValue( $imagick_image_editor )->getImagePixelColor( 0, 99)->getColor() );455 $this->assertEquals( $color_top_left, $property->getValue( $imagick_image_editor )->getImagePixelColor( 1, 98 )->getColor() ); 456 456 } 457 457 458 458 /**