diff options
Diffstat (limited to 'ext/dom/tests')
-rw-r--r-- | ext/dom/tests/DOMCharacterData_deleteData_error_002.phpt | 2 | ||||
-rw-r--r-- | ext/dom/tests/DOMDocumentFragment_appendXML_error_002.phpt | 2 | ||||
-rw-r--r-- | ext/dom/tests/DOMDocument_saveHTMLFile_error2.phpt | 2 | ||||
-rw-r--r-- | ext/dom/tests/DOMDocument_saveHTML_error2.phpt | 2 | ||||
-rw-r--r-- | ext/dom/tests/DOMDocument_validate_error2.phpt | 2 | ||||
-rw-r--r-- | ext/dom/tests/dom003.phpt | 2 | ||||
-rw-r--r-- | ext/dom/tests/regsiter_node_class.phpt | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/ext/dom/tests/DOMCharacterData_deleteData_error_002.phpt b/ext/dom/tests/DOMCharacterData_deleteData_error_002.phpt index 117d5de24e..4795f8176c 100644 --- a/ext/dom/tests/DOMCharacterData_deleteData_error_002.phpt +++ b/ext/dom/tests/DOMCharacterData_deleteData_error_002.phpt @@ -16,7 +16,7 @@ $root->appendChild($cdata); $cdata->deleteData(5, 1); ?> --EXPECTF-- -Fatal error: Uncaught exception 'DOMException' with message 'Index Size Error' in %s:%d +Fatal error: Uncaught DOMException: Index Size Error in %s:%d Stack trace: #0 %s(%d): DOMCharacterData->deleteData(5, 1) #1 {main} diff --git a/ext/dom/tests/DOMDocumentFragment_appendXML_error_002.phpt b/ext/dom/tests/DOMDocumentFragment_appendXML_error_002.phpt index c02c920849..7603a01741 100644 --- a/ext/dom/tests/DOMDocumentFragment_appendXML_error_002.phpt +++ b/ext/dom/tests/DOMDocumentFragment_appendXML_error_002.phpt @@ -12,7 +12,7 @@ $fragment->appendXML('<bait>crankbait</bait>'); $document->appendChild($fragment); ?> --EXPECTF-- -Fatal error: Uncaught exception 'DOMException' with message 'No Modification Allowed Error' in %s:%d +Fatal error: Uncaught DOMException: No Modification Allowed Error in %s:%d Stack trace: #0 %s(%d): DOMDocumentFragment->appendXML('<bait>crankbait...') #1 {main} diff --git a/ext/dom/tests/DOMDocument_saveHTMLFile_error2.phpt b/ext/dom/tests/DOMDocument_saveHTMLFile_error2.phpt index 2ef17926aa..c1ec685b2c 100644 --- a/ext/dom/tests/DOMDocument_saveHTMLFile_error2.phpt +++ b/ext/dom/tests/DOMDocument_saveHTMLFile_error2.phpt @@ -12,7 +12,7 @@ require_once dirname(__FILE__) .'/skipif.inc'; DOMDocument::saveHTMLFile(); ?> --EXPECTF-- -Fatal error: Uncaught exception 'EngineException' with message 'Non-static method DOMDocument::saveHTMLFile() cannot be called statically' in %s:%d +Fatal error: Uncaught EngineException: Non-static method DOMDocument::saveHTMLFile() cannot be called statically in %s:%d Stack trace: #0 {main} thrown in %s on line %d diff --git a/ext/dom/tests/DOMDocument_saveHTML_error2.phpt b/ext/dom/tests/DOMDocument_saveHTML_error2.phpt index 1f7c95c6ae..41d190c072 100644 --- a/ext/dom/tests/DOMDocument_saveHTML_error2.phpt +++ b/ext/dom/tests/DOMDocument_saveHTML_error2.phpt @@ -12,7 +12,7 @@ require_once dirname(__FILE__) .'/skipif.inc'; DOMDocument::saveHTML(true); ?> --EXPECTF-- -Fatal error: Uncaught exception 'EngineException' with message 'Non-static method DOMDocument::saveHTML() cannot be called statically' in %s:%d +Fatal error: Uncaught EngineException: Non-static method DOMDocument::saveHTML() cannot be called statically in %s:%d Stack trace: #0 {main} thrown in %s on line %d diff --git a/ext/dom/tests/DOMDocument_validate_error2.phpt b/ext/dom/tests/DOMDocument_validate_error2.phpt index 0ef15691de..901d541bf3 100644 --- a/ext/dom/tests/DOMDocument_validate_error2.phpt +++ b/ext/dom/tests/DOMDocument_validate_error2.phpt @@ -12,7 +12,7 @@ require_once dirname(__FILE__) .'/skipif.inc'; DOMDocument::validate(); ?> --EXPECTF-- -Fatal error: Uncaught exception 'EngineException' with message 'Non-static method DOMDocument::validate() cannot be called statically' in %s:%d +Fatal error: Uncaught EngineException: Non-static method DOMDocument::validate() cannot be called statically in %s:%d Stack trace: #0 {main} thrown in %s on line %d diff --git a/ext/dom/tests/dom003.phpt b/ext/dom/tests/dom003.phpt index 37db1f7677..33f9a0ec81 100644 --- a/ext/dom/tests/dom003.phpt +++ b/ext/dom/tests/dom003.phpt @@ -62,7 +62,7 @@ object(DOMException)#%d (%d) { } --- Don't catch exception with try/catch -Fatal error: Uncaught exception 'DOMException' with message 'Hierarchy Request Error' in %sdom003.php:%d +Fatal error: Uncaught DOMException: Hierarchy Request Error in %sdom003.php:%d Stack trace: #0 %sdom003.php(%d): DOMNode->appendChild(Object(DOMElement)) #1 {main} diff --git a/ext/dom/tests/regsiter_node_class.phpt b/ext/dom/tests/regsiter_node_class.phpt index 7fff3bfacf..c2f0622438 100644 --- a/ext/dom/tests/regsiter_node_class.phpt +++ b/ext/dom/tests/regsiter_node_class.phpt @@ -37,7 +37,7 @@ myAttribute HELLO Attribute DOMAttr -Fatal error: Uncaught exception 'EngineException' with message 'Call to undefined method DOMAttr::testit()' in %s:25 +Fatal error: Uncaught EngineException: Call to undefined method DOMAttr::testit() in %s:25 Stack trace: #0 {main} thrown in %s on line 25 |