summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2004-02-04 17:47:35 +0000
committerZeev Suraski <zeev@php.net>2004-02-04 17:47:35 +0000
commitaa4fa62fc80c35f5edcc5646233bae63c4911864 (patch)
tree45ecb539f9f9ba5bc6829b68b46fc6730efea378 /tests
parent4b4351c2d9cbec664d8c7d0d490e1ea049bb04dd (diff)
downloadphp-git-aa4fa62fc80c35f5edcc5646233bae63c4911864.tar.gz
Update test (reason: early binding changes its behavior)
Diffstat (limited to 'tests')
-rw-r--r--tests/classes/final_redeclare.phpt3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/classes/final_redeclare.phpt b/tests/classes/final_redeclare.phpt
index cc614c4e06..e8f2e6ff09 100644
--- a/tests/classes/final_redeclare.phpt
+++ b/tests/classes/final_redeclare.phpt
@@ -12,7 +12,6 @@ class pass {
}
$t = new pass();
-$t->show();
class fail extends pass {
function show() {
@@ -23,6 +22,4 @@ class fail extends pass {
echo "Done\n"; // Shouldn't be displayed
?>
--EXPECTF--
-Call to function pass::show()
-
Fatal error: Cannot override final method pass::show() in %s on line %d