Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2015-06-06 12:28:34 +0300
committerMarc Delisle <marc@infomarc.info>2015-06-06 12:28:34 +0300
commiteac498415ae7c1e81fd949d533de6757f4a6e0df (patch)
tree04661d773b6570f459f5ecce463a11e25f8d25a2 /test
parentbe25fa7e4970791f171aa10da563b6c01895755a (diff)
Remove unused parameter
Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'test')
-rw-r--r--test/classes/gis/PMA_GIS_Linestring_test.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/classes/gis/PMA_GIS_Linestring_test.php b/test/classes/gis/PMA_GIS_Linestring_test.php
index abf6884511..114ead6f28 100644
--- a/test/classes/gis/PMA_GIS_Linestring_test.php
+++ b/test/classes/gis/PMA_GIS_Linestring_test.php
@@ -171,13 +171,12 @@ class PMA_GIS_LinestringTest extends PMA_GIS_GeomTest
* @param string $line_color color for the GIS LINESTRING object
* @param array $scale_data array containing data related to scaling
* @param object $image image object
- * @param string $output expected output
*
* @dataProvider providerForPrepareRowAsPng
* @return void
*/
public function testPrepareRowAsPng($spatial, $label, $line_color,
- $scale_data, $image, $output
+ $scale_data, $image
) {
$return = $this->object->prepareRowAsPng(
$spatial, $label, $line_color, $scale_data, $image
@@ -204,8 +203,7 @@ class PMA_GIS_LinestringTest extends PMA_GIS_GeomTest
'scale' => 2,
'height' => 150
),
- imagecreatetruecolor('120', '150'),
- ''
+ imagecreatetruecolor('120', '150')
)
);
}