summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagearc_error1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/imagearc_error1.phpt')
-rw-r--r--ext/gd/tests/imagearc_error1.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/gd/tests/imagearc_error1.phpt b/ext/gd/tests/imagearc_error1.phpt
index 1e63406832..65c582b255 100644
--- a/ext/gd/tests/imagearc_error1.phpt
+++ b/ext/gd/tests/imagearc_error1.phpt
@@ -4,7 +4,7 @@ Testing wrong param passing imagearc() of GD library
Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
#testfest PHPSP on 2009-06-20
--SKIPIF--
-<?php
+<?php
if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
@@ -14,7 +14,7 @@ $image = imagecreatetruecolor(100, 100);
$white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
-//create an arc with white color
+//create an arc with white color
imagearc($image, 50, 50, 30, 30, 0, 180);
include_once __DIR__ . '/func.inc';