diff options
| author | Veres Lajos <vlajos@gmail.com> | 2013-07-13 13:37:04 +0100 |
|---|---|---|
| committer | Stanislav Malyshev <stas@php.net> | 2013-07-15 00:23:03 -0700 |
| commit | e9a95d78ef7c43bc6b6478b9370047d854b20024 (patch) | |
| tree | 88ee26fa1c879679a234deb87973a3acd0ff3382 /ext/dom | |
| parent | b79b13b4efbf3374ec7d28286b29928f43da6d1d (diff) | |
| download | php-git-e9a95d78ef7c43bc6b6478b9370047d854b20024.tar.gz | |
typo fixes
Diffstat (limited to 'ext/dom')
| -rw-r--r-- | ext/dom/tests/DOMDocument_schemaValidate_error5.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/dom/tests/DOMDocument_schemaValidate_error5.phpt b/ext/dom/tests/DOMDocument_schemaValidate_error5.phpt index d3f0658c1f..d5743bc6cf 100644 --- a/ext/dom/tests/DOMDocument_schemaValidate_error5.phpt +++ b/ext/dom/tests/DOMDocument_schemaValidate_error5.phpt @@ -1,5 +1,5 @@ --TEST-- -DomDocument::schemaValidate() - non-existant schema file +DomDocument::schemaValidate() - non-existent schema file --CREDITS-- Daniel Convissor <danielc@php.net> # TestFest 2009 NYPHP @@ -12,14 +12,14 @@ $doc = new DOMDocument; $doc->load(dirname(__FILE__)."/book.xml"); -$result = $doc->schemaValidate(dirname(__FILE__)."/non-existant-file"); +$result = $doc->schemaValidate(dirname(__FILE__)."/non-existent-file"); var_dump($result); ?> --EXPECTF-- -Warning: DOMDocument::schemaValidate(): I/O warning : failed to load external entity "%snon-existant-file" in %s.php on line %d +Warning: DOMDocument::schemaValidate(): I/O warning : failed to load external entity "%snon-existent-file" in %s.php on line %d -Warning: DOMDocument::schemaValidate(): Failed to locate the main schema resource at '%s/non-existant-file'. in %s.php on line %d +Warning: DOMDocument::schemaValidate(): Failed to locate the main schema resource at '%s/non-existent-file'. in %s.php on line %d Warning: DOMDocument::schemaValidate(): Invalid Schema in %s.php on line %d bool(false) |
