summaryrefslogtreecommitdiff
path: root/ext/gd/tests/bug50194.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/bug50194.phpt')
-rw-r--r--ext/gd/tests/bug50194.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/tests/bug50194.phpt b/ext/gd/tests/bug50194.phpt
index f68165be42..0ccab83063 100644
--- a/ext/gd/tests/bug50194.phpt
+++ b/ext/gd/tests/bug50194.phpt
@@ -13,7 +13,7 @@ require_once __DIR__ . DIRECTORY_SEPARATOR . 'func.inc';
$im = imagecreatetruecolor(240, 55);
$background = imagecolorallocatealpha($im, 60, 60, 60, 0); // no tranparency
$black = imagecolorallocate($im, 0, 0, 0);
-imagealphablending($im, false);
+imagealphablending($im, false);
imagefilledrectangle($im, 0, 0, 239, 54, $background);
$text = 'Testing ... ';
$font = __DIR__ . DIRECTORY_SEPARATOR . 'Tuffy.ttf';