summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/coll_006.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/coll_006.phpt')
-rw-r--r--ext/oci8/tests/coll_006.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/oci8/tests/coll_006.phpt b/ext/oci8/tests/coll_006.phpt
index 12e890a536..cc69f9b506 100644
--- a/ext/oci8/tests/coll_006.phpt
+++ b/ext/oci8/tests/coll_006.phpt
@@ -3,13 +3,13 @@ ocinewcollection() + free()
--SKIPIF--
<?php
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
-require(dirname(__FILE__).'/skipif.inc');
+require(__DIR__.'/skipif.inc');
?>
--FILE--
<?php
-require dirname(__FILE__)."/connect.inc";
-require dirname(__FILE__)."/create_type.inc";
+require __DIR__."/connect.inc";
+require __DIR__."/create_type.inc";
var_dump($coll1 = ocinewcollection($c, $type_name));
@@ -18,7 +18,7 @@ var_dump($coll1->size());
echo "Done\n";
-require dirname(__FILE__)."/drop_type.inc";
+require __DIR__."/drop_type.inc";
?>
--EXPECTF--