summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/lob_024.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/lob_024.phpt')
-rw-r--r--ext/oci8/tests/lob_024.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/oci8/tests/lob_024.phpt b/ext/oci8/tests/lob_024.phpt
index 958cb3ed13..53a043fd95 100644
--- a/ext/oci8/tests/lob_024.phpt
+++ b/ext/oci8/tests/lob_024.phpt
@@ -3,13 +3,13 @@ oci_lob_load()
--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_table.inc';
+require __DIR__.'/connect.inc';
+require __DIR__.'/create_table.inc';
$ora_sql = "INSERT INTO
".$schema.$table_name." (blob)
@@ -42,7 +42,7 @@ var_dump(oci_lob_load());
unset($row[0]->descriptor);
var_dump(oci_lob_load($row[0]));
-require dirname(__FILE__).'/drop_table.inc';
+require __DIR__.'/drop_table.inc';
echo "Done\n";