diff options
author | Georg Richter <georg@php.net> | 2006-09-26 13:06:13 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2006-09-26 13:06:13 +0000 |
commit | 1432e7b40f08515d95b035fe47daeb39aaee3197 (patch) | |
tree | 88445bf63ab26557ee57c1e4db6228f570c42b41 /ext/mysqli/tests/014.phpt | |
parent | 798d93c4daa3f417314e1107124bc820ae73bdfc (diff) | |
download | php-git-1432e7b40f08515d95b035fe47daeb39aaee3197.tar.gz |
added unicode support for mysqli extension
Diffstat (limited to 'ext/mysqli/tests/014.phpt')
-rw-r--r-- | ext/mysqli/tests/014.phpt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/mysqli/tests/014.phpt b/ext/mysqli/tests/014.phpt index d6591fcab4..4c746a1a6c 100644 --- a/ext/mysqli/tests/014.phpt +++ b/ext/mysqli/tests/014.phpt @@ -53,17 +53,17 @@ mysqli autocommit/commit/rollback mysqli_close($link); ?> ---EXPECT-- +--EXPECTF-- Num_of_rows=1 array(2) { [0]=> - string(1) "1" + %s(1) "1" [1]=> - string(6) "foobar" + %s(6) "foobar" } array(2) { [0]=> - string(1) "2" + %s(1) "2" [1]=> - string(4) "egon" + %s(4) "egon" } |