diff options
author | Antony Dovgal <tony2001@php.net> | 2006-06-19 17:33:44 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-06-19 17:33:44 +0000 |
commit | c458d1347b4b28da821dfd4e8acf8b913f9db667 (patch) | |
tree | b81b3f7f679d9151a0f3844c4cfef39670672abc | |
parent | 8b993875695674eeea5b4f5130e0cae9f18c8fc3 (diff) | |
download | php-git-c458d1347b4b28da821dfd4e8acf8b913f9db667.tar.gz |
fix tests
-rwxr-xr-x | Zend/tests/bug33732.phpt | 4 | ||||
-rw-r--r-- | Zend/tests/objects_014.phpt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug33732.phpt b/Zend/tests/bug33732.phpt index 07cd7193ea..4969791faa 100755 --- a/Zend/tests/bug33732.phpt +++ b/Zend/tests/bug33732.phpt @@ -9,7 +9,7 @@ interface iA { class A implements iA { } -class B extends A { +class B extends A implements iA { } echo iA::cA; @@ -27,7 +27,7 @@ interface iB2 extends iA2 { class A2 implements iA2 { } -class B2 extends A2 { +class B2 extends A2 implements iA2 { } echo iA2::cA; diff --git a/Zend/tests/objects_014.phpt b/Zend/tests/objects_014.phpt index 2dec0c078a..c422b392ea 100644 --- a/Zend/tests/objects_014.phpt +++ b/Zend/tests/objects_014.phpt @@ -12,4 +12,4 @@ interface bar extends foo, foo { echo "Done\n"; ?> --EXPECTF-- -Fatal error: Cannot implement previously implemented interface foo in %s on line %d +Fatal error: Class bar cannot implement previously implemented interface foo in %s on line %d |