diff options
author | Antony Dovgal <tony2001@php.net> | 2006-05-30 22:34:16 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-05-30 22:34:16 +0000 |
commit | 9246ba2a82e03201477444878c58b80f726adefe (patch) | |
tree | 888dcf70ee52ed084d25d9c32155149bc881c0eb | |
parent | c1272d8972d197fa4d85632f41b520b223b86dd2 (diff) | |
download | php-git-9246ba2a82e03201477444878c58b80f726adefe.tar.gz |
more test fixes, this time support Oracle 10
-rw-r--r-- | ext/oci8/tests/field_funcs.phpt | 6 | ||||
-rw-r--r-- | ext/oci8/tests/field_funcs_old.phpt | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ext/oci8/tests/field_funcs.phpt b/ext/oci8/tests/field_funcs.phpt index 988e5f7a12..102f2fdc03 100644 --- a/ext/oci8/tests/field_funcs.phpt +++ b/ext/oci8/tests/field_funcs.phpt @@ -54,7 +54,7 @@ require dirname(__FILE__).'/drop_table.inc'; echo "Done\n"; ?> ---EXPECT-- +--EXPECTF-- array(5) { [0]=> string(1) "1" @@ -71,14 +71,14 @@ bool(false) string(2) "ID" string(6) "NUMBER" int(2) -int(0) +int(%d) int(0) int(22) bool(false) string(5) "VALUE" string(6) "NUMBER" int(2) -int(0) +int(%d) int(0) int(22) bool(true) diff --git a/ext/oci8/tests/field_funcs_old.phpt b/ext/oci8/tests/field_funcs_old.phpt index 34af094291..e6f21d613d 100644 --- a/ext/oci8/tests/field_funcs_old.phpt +++ b/ext/oci8/tests/field_funcs_old.phpt @@ -54,7 +54,7 @@ require dirname(__FILE__).'/drop_table.inc'; echo "Done\n"; ?> ---EXPECT-- +--EXPECTF-- array(5) { [0]=> string(1) "1" @@ -71,14 +71,14 @@ bool(false) string(2) "ID" string(6) "NUMBER" int(2) -int(0) +int(%d) int(0) int(22) bool(false) string(5) "VALUE" string(6) "NUMBER" int(2) -int(0) +int(%d) int(0) int(22) bool(true) |