summaryrefslogtreecommitdiff
path: root/Zend/tests/call_static_003.phpt
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2010-03-02 00:16:40 +0000
committerFelipe Pena <felipe@php.net>2010-03-02 00:16:40 +0000
commit79f618833f3576a54565273d76027b3c0bb1db89 (patch)
tree3a84f10b01ea3e326ca319f1e177027ecc3532dc /Zend/tests/call_static_003.phpt
parentfcf1058d6bab4e80466f910ed42ab65ddaa93e2b (diff)
downloadphp-git-79f618833f3576a54565273d76027b3c0bb1db89.tar.gz
- Fixed bug #51176 (Static calling in non-static method behaves like $this->)
Diffstat (limited to 'Zend/tests/call_static_003.phpt')
-rw-r--r--Zend/tests/call_static_003.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/call_static_003.phpt b/Zend/tests/call_static_003.phpt
index 566ff0fdf2..d5e2b75298 100644
--- a/Zend/tests/call_static_003.phpt
+++ b/Zend/tests/call_static_003.phpt
@@ -28,9 +28,9 @@ foo::BAZ();
--EXPECT--
nonstatic
string(6) "fOoBaR"
-nonstatic
+static
string(6) "foOBAr"
-nonstatic
+static
string(6) "fOOBAr"
static
string(3) "bAr"