diff options
author | Fabien Villepinte <fabien.villepinte@gmail.com> | 2019-03-15 22:55:30 +0100 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2019-03-15 22:55:30 +0100 |
commit | 26dfce7f36d1c6f737ac241df1315a1b42b932c7 (patch) | |
tree | 570279b2f4d66a3de7f6ff7f7c865654ad04cea4 /ext/xsl/tests/xslt007.phpt | |
parent | 63802a8446691869371bb37078d55b99cae7eb95 (diff) | |
download | php-git-26dfce7f36d1c6f737ac241df1315a1b42b932c7.tar.gz |
Replace dirname(__FILE__) by __DIR__ in tests
Diffstat (limited to 'ext/xsl/tests/xslt007.phpt')
-rw-r--r-- | ext/xsl/tests/xslt007.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/xsl/tests/xslt007.phpt b/ext/xsl/tests/xslt007.phpt index bb4d0ba657..241cc1cc0b 100644 --- a/ext/xsl/tests/xslt007.phpt +++ b/ext/xsl/tests/xslt007.phpt @@ -1,16 +1,16 @@ --TEST-- Test 7: Transform To Uri --SKIPIF-- -<?php require_once dirname(__FILE__) .'/skipif.inc'; ?> +<?php require_once __DIR__ .'/skipif.inc'; ?> --FILE-- <?php echo "Test 7: Transform To Uri"; include("prepare.inc"); $proc->importStylesheet($xsl); print "\n"; -$doc = $proc->transformToUri($dom, "file://".dirname(__FILE__)."/out.xml"); -print file_get_contents(dirname(__FILE__)."/out.xml"); -unlink(dirname(__FILE__)."/out.xml"); +$doc = $proc->transformToUri($dom, "file://".__DIR__."/out.xml"); +print file_get_contents(__DIR__."/out.xml"); +unlink(__DIR__."/out.xml"); print "\n"; --EXPECT-- Test 7: Transform To Uri |