diff options
author | Antony Dovgal <tony2001@php.net> | 2004-12-02 16:33:36 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2004-12-02 16:33:36 +0000 |
commit | ed5638bf77db7ad252d92564467d882fd80e9256 (patch) | |
tree | b10d3001bb6bf1b4d9e6fcd7e7daf18c53398409 /ext/dom | |
parent | ecac37514c44a2cf31601841ae8dffe6a8509a48 (diff) | |
download | php-git-ed5638bf77db7ad252d92564467d882fd80e9256.tar.gz |
fix tests
Diffstat (limited to 'ext/dom')
-rw-r--r-- | ext/dom/tests/bug28721.phpt | 2 | ||||
-rw-r--r-- | ext/dom/tests/dom004.phpt | 2 | ||||
-rw-r--r-- | ext/dom/tests/dom_xinclude.phpt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/dom/tests/bug28721.phpt b/ext/dom/tests/bug28721.phpt index a9aef3863f..e8e7d867d8 100644 --- a/ext/dom/tests/bug28721.phpt +++ b/ext/dom/tests/bug28721.phpt @@ -1,7 +1,7 @@ --TEST-- Bug # 28721: (appendChild() and insertBefore() unset DOMText) --SKIPIF-- -<?php require_once('skipif.php'); ?> +<?php require_once('skipif.inc'); ?> --FILE-- <?php function print_node(DomNode $node) { diff --git a/ext/dom/tests/dom004.phpt b/ext/dom/tests/dom004.phpt index 7f36eb3692..82b7915f6f 100644 --- a/ext/dom/tests/dom004.phpt +++ b/ext/dom/tests/dom004.phpt @@ -3,7 +3,7 @@ Test 4: Streams Test --SKIPIF-- <?php require_once('skipif.inc'); -array_search('compress.zlib', stream_get_wrappers()) || die('skip compress.zlib wrapper is not available'); +array_search('compress.zlib', stream_get_wrappers()) or die('skip compress.zlib wrapper is not available'); ?> --FILE-- <?php diff --git a/ext/dom/tests/dom_xinclude.phpt b/ext/dom/tests/dom_xinclude.phpt index 859dd54583..92df048bc5 100644 --- a/ext/dom/tests/dom_xinclude.phpt +++ b/ext/dom/tests/dom_xinclude.phpt @@ -3,7 +3,7 @@ Test: Xinclude and Streams --SKIPIF-- <?php require_once('skipif.inc'); -array_search('compress.zlib', stream_get_wrappers()) || die('skip compress.zlib wrapper is not available'); +array_search('compress.zlib', stream_get_wrappers()) or die('skip compress.zlib wrapper is not available'); ?> --FILE-- <?php |