From 928d6ac76954a1d9c245fedf72f4557d54927061 Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Wed, 2 Jul 2003 15:38:51 +0000 Subject: [PATCH] Adjust test. # This was also fixed by the Zeev's patch for bug #22367. --- tests/lang/bug22510.phpt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } } -- 2.40.0