summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-08-14 19:17:59 +0000
committerFelipe Pena <felipe@php.net>2008-08-14 19:17:59 +0000
commit6b91caeba17d60939786d26163fb67907d568c9c (patch)
treeb5552c1b81d13b18671bfb46f26fef827e3bbc5e /Zend
parent542483cbe40187e737762595628ef0fa3557a303 (diff)
downloadphp-git-6b91caeba17d60939786d26163fb67907d568c9c.tar.gz
- Fixed test
Diffstat (limited to 'Zend')
-rw-r--r--Zend/tests/exception_009.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/exception_009.phpt b/Zend/tests/exception_009.phpt
index aec4da4b72..b22b3aa66e 100644
--- a/Zend/tests/exception_009.phpt
+++ b/Zend/tests/exception_009.phpt
@@ -14,9 +14,9 @@ class my_file
class my_exception extends exception
{
public function __construct()
- {/*
+ {
$this->message = new stdclass ;
- $this->file = new my_file ;*/
+ $this->file = new my_file ;
$this->line = "12" ;
}
}
@@ -25,4 +25,4 @@ throw new my_exception;
?>
--EXPECT--
-Catchable fatal error: Object of class stdClass could not be converted to Unicode string in Unknown on line 0
+Catchable fatal error: Object of class stdClass could not be converted to string in Unknown on line 0