summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/11pg_meta_data.phpt
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-08-28 00:29:44 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-08-28 00:29:44 +0000
commite5879a50603a22ef5de3e457aff31ec96b30f83c (patch)
treef42abfa2c6757501b2cc853cac83795d55c22251 /ext/pgsql/tests/11pg_meta_data.phpt
parentc78169086bc5e71551152bed0c7e46dd0d165bc0 (diff)
downloadphp-git-e5879a50603a22ef5de3e457aff31ec96b30f83c.tar.gz
Fixed tests that failed in ZTS due to incorrect file paths.
Fixed test that failed due to new array dimension property being fetched.
Diffstat (limited to 'ext/pgsql/tests/11pg_meta_data.phpt')
-rw-r--r--ext/pgsql/tests/11pg_meta_data.phpt12
1 files changed, 9 insertions, 3 deletions
diff --git a/ext/pgsql/tests/11pg_meta_data.phpt b/ext/pgsql/tests/11pg_meta_data.phpt
index 5726bb3128..a7f8ed47fc 100644
--- a/ext/pgsql/tests/11pg_meta_data.phpt
+++ b/ext/pgsql/tests/11pg_meta_data.phpt
@@ -17,7 +17,7 @@ var_dump($meta);
--EXPECT--
array(3) {
["num"]=>
- array(5) {
+ array(6) {
["num"]=>
int(1)
["type"]=>
@@ -28,9 +28,11 @@ array(3) {
bool(false)
["has default"]=>
bool(false)
+ ["array dims"]=>
+ int(0)
}
["str"]=>
- array(5) {
+ array(6) {
["num"]=>
int(2)
["type"]=>
@@ -41,9 +43,11 @@ array(3) {
bool(false)
["has default"]=>
bool(false)
+ ["array dims"]=>
+ int(0)
}
["bin"]=>
- array(5) {
+ array(6) {
["num"]=>
int(3)
["type"]=>
@@ -54,5 +58,7 @@ array(3) {
bool(false)
["has default"]=>
bool(false)
+ ["array dims"]=>
+ int(0)
}
}