summaryrefslogtreecommitdiff
path: root/Zend/tests/error_reporting09.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/error_reporting09.phpt')
-rw-r--r--Zend/tests/error_reporting09.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/tests/error_reporting09.phpt b/Zend/tests/error_reporting09.phpt
index 8d4e7e1b17..a3c254d94d 100644
--- a/Zend/tests/error_reporting09.phpt
+++ b/Zend/tests/error_reporting09.phpt
@@ -4,7 +4,7 @@ testing @ and error_reporting - 9
<?php
error_reporting(E_ALL);
-
+
function bar() {
echo @$blah;
echo $undef2;
@@ -16,14 +16,14 @@ function foo() {
echo $blah;
return bar();
}
-
-@foo();
+
+@foo();
var_dump(error_reporting());
echo "Done\n";
?>
---EXPECTF--
+--EXPECTF--
Notice: Undefined variable: blah in %s on line %d
Notice: Undefined variable: undef2 in %s on line %d