From: Moriyoshi Koizumi Date: Wed, 2 Jul 2003 15:38:51 +0000 (+0000) Subject: Adjust test. X-Git-Tag: BEFORE_ARG_INFO~432 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=928d6ac76954a1d9c245fedf72f4557d54927061;p=php Adjust test. # This was also fixed by the Zeev's patch for bug #22367. --- diff --git a/tests/lang/bug22510.phpt b/tests/lang/bug22510.phpt index ce5ce01358..0502df28af 100644 --- a/tests/lang/bug22510.phpt +++ b/tests/lang/bug22510.phpt @@ -13,7 +13,7 @@ class foo function &method1() { print __CLASS__."::".__FUNCTION__."\n"; - return @$this->foo; + return $this->foo; } function &method2() { @@ -23,7 +23,7 @@ class foo function method3() { print __CLASS__."::".__FUNCTION__."\n"; - return @$this->foo; + return $this->foo; } }