add maxWidth param
authorNeil Kandalgaonkar <neilk@users.mediawiki.org>
Tue, 2 Aug 2011 00:36:38 +0000 (00:36 +0000)
committerNeil Kandalgaonkar <neilk@users.mediawiki.org>
Tue, 2 Aug 2011 00:36:38 +0000 (00:36 +0000)
tests/phpunit/includes/api/RandomImageGenerator.php

index ae34997..69c017a 100644 (file)
@@ -69,7 +69,7 @@ class RandomImageGenerator {
 
 
        public function __construct( $options = array() ) {
-               foreach ( array( 'dictionaryFile', 'minWidth', 'minHeight', 'maxHeight', 'shapesToDraw' ) as $property ) {
+               foreach ( array( 'dictionaryFile', 'minWidth', 'minHeight', 'maxWidth', 'maxHeight', 'shapesToDraw' ) as $property ) {
                        if ( isset( $options[$property] ) ) {
                                $this->$property = $options[$property];
                        }