From: SVN Migration Date: Tue, 30 Nov 2004 01:39:19 +0000 (+0000) Subject: This commit was manufactured by cvs2svn to create tag 'php_5_0_3RC1'. X-Git-Tag: php-5.0.3RC1^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89ee4eb8e3879e8570018eb250d78d8d6e9e6b02;p=php This commit was manufactured by cvs2svn to create tag 'php_5_0_3RC1'. --- diff --git a/ext/reflection/tests/003.phpt b/ext/reflection/tests/003.phpt deleted file mode 100755 index 6603892559..0000000000 --- a/ext/reflection/tests/003.phpt +++ /dev/null @@ -1,31 +0,0 @@ ---TEST-- -invoke() with base class method ---FILE-- -invoke($o); - -?> -===DONE=== ---EXPECT-- -Foo::Test -===DONE=== diff --git a/tests/lang/bug30862.phpt b/tests/lang/bug30862.phpt deleted file mode 100644 index 12c95d57e8..0000000000 --- a/tests/lang/bug30862.phpt +++ /dev/null @@ -1,30 +0,0 @@ ---TEST-- -Bug #30862 (Static array with boolean indexes) ---FILE-- -"false", true=>"true"); -} -print_r(T::$a); -?> ----------- -"false", Y=>"true"); -} -print_r(T2::$a); -?> ---EXPECT-- -Array -( - [0] => false - [1] => true -) ----------- -Array -( - [0] => false - [1] => true -)