summaryrefslogtreecommitdiff
path: root/Zend/tests/bug31720.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug31720.phpt')
-rw-r--r--Zend/tests/bug31720.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/Zend/tests/bug31720.phpt b/Zend/tests/bug31720.phpt
deleted file mode 100644
index 3d62ac34e2..0000000000
--- a/Zend/tests/bug31720.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Bug #31720 (Invalid object callbacks not caught in array_walk())
---FILE--
-<?php
-$array = array('at least one element');
-
-array_walk($array, array($nonesuchvar,'show'));
-?>
-===DONE===
---EXPECTF--
-Notice: Undefined variable: nonesuchvar in %s on line %d
-
-Notice: Non-callable array passed to zend_call_function() in %s on line %d
-
-Warning: array_walk(): Unable to call Array() - function does not exist in %s on line %d
-===DONE===