diff options
author | Christian Schneider | 2007-02-08 15:01:20 +0000 |
---|---|---|
committer | Christian Schneider | 2007-02-08 15:01:20 +0000 |
commit | 0b9f19b72396d8bd399f4d7353f2fdb445bc55f3 (patch) | |
tree | b93c766adb7dd8fb7a4f9c21f97821c16fdf75ea /tests | |
parent | 6943a9f3bc10a60fcc01f126dfbd22b24b9c99cb (diff) | |
download | itools-0b9f19b72396d8bd399f4d7353f2fdb445bc55f3.tar.gz itools-0b9f19b72396d8bd399f4d7353f2fdb445bc55f3.tar.bz2 itools-0b9f19b72396d8bd399f4d7353f2fdb445bc55f3.zip |
Removed base class inheritance again, check for var name class (tel_xmlentry)
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it_xml.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/it_xml.t b/tests/it_xml.t index 06df969..85f16c8 100755 --- a/tests/it_xml.t +++ b/tests/it_xml.t @@ -51,15 +51,15 @@ function my_xml($xmldata) $this->qux->val = "qux"; if (is_object($this->myfoo)) - $this->myfoo->properbaseclass = is_a($this->myfoo, "my_xml"); + $this->myfoo->inheritbaseclass = is_a($this->myfoo, "my_xml"); } } match( '<myfoo />', - 'class myfoo { var $properbaseclass = true; }', - 'Inheritance and constructor', + 'class myfoo { var $inheritbaseclass = false; }', + 'Inheritance and constructor (critical for e.g. tel_xmlentry)', 'my' ); |