summaryrefslogtreecommitdiff
path: root/Zend/tests/bug46196.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug46196.phpt')
-rw-r--r--Zend/tests/bug46196.phpt8
1 files changed, 0 insertions, 8 deletions
diff --git a/Zend/tests/bug46196.phpt b/Zend/tests/bug46196.phpt
index 7a6a753d87..84e26ce1a5 100644
--- a/Zend/tests/bug46196.phpt
+++ b/Zend/tests/bug46196.phpt
@@ -4,12 +4,6 @@ Test restore_error_handler() function : bug #46196
Olivier Doucet
--FILE--
<?php
-/* Prototype : void restore_error_handler(void)
- * Description: Restores the previously defined error handler function
- * Source code: Zend/zend_builtin_functions.c
- * Alias to functions:
- */
-
echo "*** Testing restore_error_handler() : error bug #46196 ***\n";
var_dump( set_error_handler( 'myErrorHandler' ) );
@@ -22,10 +16,8 @@ function myErrorHandler($errno, $errstr, $errfile, $errline)
}
?>
-===DONE===
--EXPECT--
*** Testing restore_error_handler() : error bug #46196 ***
NULL
bool(true)
NULL
-===DONE===