summaryrefslogtreecommitdiff
path: root/ext/gd/tests/copy.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/copy.phpt')
-rw-r--r--ext/gd/tests/copy.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/gd/tests/copy.phpt b/ext/gd/tests/copy.phpt
index 28bb3ed173..046567e3ef 100644
--- a/ext/gd/tests/copy.phpt
+++ b/ext/gd/tests/copy.phpt
@@ -21,7 +21,7 @@ $p2 = imagecolorat($dst_tc, 0,0) == 0x0000ff;
$p3 = imagecolorat($dst_tc, 4,4) == 0x00ff00;
if ($p1 && $p2 && $p3) {
- echo "TC/TC: ok\n";
+ echo "TC/TC: ok\n";
}
imagedestroy($src_tc); imagedestroy($dst_tc);
@@ -46,7 +46,7 @@ $p2 = $c2['red'] == 0x00 && $c2['blue']==0xff && $c2['green']==0x00;
$p3 = $c3['red'] == 0x00 && $c3['blue']==0x00 && $c3['green']==0xff;
if ($p1 && $p2 && $p3) {
- echo "TC/P: ok\n";
+ echo "TC/P: ok\n";
}
imagedestroy($src_tc); imagedestroy($dst_tc);
@@ -76,7 +76,7 @@ $p3 = $c3['red'] == 0x00 && $c3['blue']==0x00 && $c3['green']==0xff;
if ($p1 && $p2 && $p3) {
- echo "P/P: ok\n";
+ echo "P/P: ok\n";
}
@@ -99,7 +99,7 @@ $p2 = imagecolorat($dst_tc, 0,0) == 0x0000ff;
$p3 = imagecolorat($dst_tc, 4,4) == 0x00ff00;
if ($p1 && $p2 && $p3) {
- echo "P/TC: ok\n";
+ echo "P/TC: ok\n";
}
?>
--EXPECT--