summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/tests/bug61267.phpt
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2019-03-15 23:36:47 +0100
committerPeter Kokot <peterkokot@gmail.com>2019-03-15 23:36:47 +0100
commit6426420f61de0df32a6085924d25b347c8788363 (patch)
treeef32814ffbea0ad3c3c38a942f9751302606c736 /ext/pdo_pgsql/tests/bug61267.phpt
parentf26c8644bb340e9e7abb6d1cedb091e9d87dd1d4 (diff)
parent26dfce7f36d1c6f737ac241df1315a1b42b932c7 (diff)
downloadphp-git-6426420f61de0df32a6085924d25b347c8788363.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Replace dirname(__FILE__) by __DIR__ in tests
Diffstat (limited to 'ext/pdo_pgsql/tests/bug61267.phpt')
-rw-r--r--ext/pdo_pgsql/tests/bug61267.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/pdo_pgsql/tests/bug61267.phpt b/ext/pdo_pgsql/tests/bug61267.phpt
index f91eceecdf..f1eee993b1 100644
--- a/ext/pdo_pgsql/tests/bug61267.phpt
+++ b/ext/pdo_pgsql/tests/bug61267.phpt
@@ -3,15 +3,15 @@ PDO::exec() returns 0 when the statement is a SELECT.
--SKIPIF--
<?php
if (!extension_loaded('pdo') || !extension_loaded('pdo_pgsql')) die('skip not loaded');
-require_once dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
-require_once dirname(__FILE__) . '/config.inc';
+require_once __DIR__ . '/../../../ext/pdo/tests/pdo_test.inc';
+require_once __DIR__ . '/config.inc';
PDOTest::skip();
?>
--FILE--
<?php
-require_once dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
-require_once dirname(__FILE__) . '/config.inc';
-$db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
+require_once __DIR__ . '/../../../ext/pdo/tests/pdo_test.inc';
+require_once __DIR__ . '/config.inc';
+$db = PDOTest::test_factory(__DIR__ . '/common.phpt');
$res = $db->exec('SELECT * from generate_series(1, 42);');
var_dump($res);