Commit 14ed75e5603 for php.net
commit 14ed75e5603541118109b2e08377750abecc0e50
Author: Gina Peter Banyard <girgias@php.net>
Date: Tue Nov 4 04:42:42 2025 +0000
Fix include paths for new pgsql tests
diff --git a/ext/pgsql/tests/pg_fetch_object_with_abstract_class.phpt b/ext/pgsql/tests/pg_fetch_object_with_abstract_class.phpt
index d04e66a043b..b3e6ea7f7b3 100644
--- a/ext/pgsql/tests/pg_fetch_object_with_abstract_class.phpt
+++ b/ext/pgsql/tests/pg_fetch_object_with_abstract_class.phpt
@@ -4,7 +4,7 @@
pgsql
--SKIPIF--
<?php
-include("skipif.inc");
+include("inc/skipif.inc");
?>
--FILE--
<?php
@@ -17,7 +17,7 @@ enum E {
case A;
}
-include "config.inc";
+include "inc/config.inc";
$table_name = "pg_fetch_object_abstract_class";
$db = pg_connect($conn_str);
pg_query($db, "CREATE TABLE {$table_name} (a integer, b text)");
@@ -49,7 +49,7 @@ enum E {
?>
--CLEAN--
<?php
-include('config.inc');
+include('inc/config.inc');
$db = @pg_connect($conn_str);
@pg_query($db, "DROP TABLE IF EXISTS pg_fetch_object_abstract_class cascade");
?>