From: Xinchen Hui Date: Fri, 27 Nov 2015 03:42:30 +0000 (+0800) Subject: Fixed test X-Git-Tag: php-7.0.1RC1~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b0f472b3b2d71d2495d8c4b82a503096691b23b3;p=php Fixed test --- diff --git a/ext/reflection/tests/bug70982.phpt b/ext/reflection/tests/bug70982.phpt index 3d6aadde4d..d530846f64 100644 --- a/ext/reflection/tests/bug70982.phpt +++ b/ext/reflection/tests/bug70982.phpt @@ -6,7 +6,7 @@ class Foo { static $abc; function __construct() { - var_dump(static::$abc); + var_dump(self::$abc); } }