summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagefilltoborder_error6.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/imagefilltoborder_error6.phpt')
-rw-r--r--ext/gd/tests/imagefilltoborder_error6.phpt10
1 files changed, 7 insertions, 3 deletions
diff --git a/ext/gd/tests/imagefilltoborder_error6.phpt b/ext/gd/tests/imagefilltoborder_error6.phpt
index 421c5932ee..5a77db798e 100644
--- a/ext/gd/tests/imagefilltoborder_error6.phpt
+++ b/ext/gd/tests/imagefilltoborder_error6.phpt
@@ -20,8 +20,12 @@ imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) );
// Try to fill border
$image_foo = tmpfile();
-imagefilltoborder( $image_foo, 50, 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallocate( $image, 255, 0, 0 ) );
+try {
+ imagefilltoborder( $image_foo, 50, 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallocate( $image, 255, 0, 0 ) );
+} catch (TypeError $e) {
+ echo $e->getMessage(), "\n";
+}
?>
---EXPECTF--
-Warning: imagefilltoborder(): supplied resource is not a valid Image resource in %s on line %d
+--EXPECT--
+imagefilltoborder(): supplied resource is not a valid Image resource