Skip to content

Commit fe9a33a

Browse files
author
Georg Richter
committed
fixed output
1 parent ac0f7d9 commit fe9a33a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ext/mysqli/tests/042.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ mysqli_fetch_object
4343
mysqli_close($link);
4444
?>
4545
--EXPECT--
46-
object()(7) {
46+
object(stdClass)(7) {
4747
["c1"]=>
4848
string(1) "0"
4949
["c2"]=>

ext/mysqli/tests/047.phpt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ mysqli_prepare_result
1919
$result = mysqli_prepare_result($stmt);
2020

2121
$fields = mysqli_fetch_fields($result);
22-
var_dump($fields);
23-
2422
mysqli_free_result($result);
2523

24+
var_dump($fields);
25+
2626
mysqli_stmt_close($stmt);
2727
mysqli_close($link);
2828
?>
2929
--EXPECT--
3030
array(2) {
3131
[0]=>
32-
object()(9) {
32+
object(stdClass)(9) {
3333
["name"]=>
3434
string(3) "foo"
3535
["orgname"]=>
@@ -50,7 +50,7 @@ array(2) {
5050
int(0)
5151
}
5252
[1]=>
53-
object()(9) {
53+
object(stdClass)(9) {
5454
["name"]=>
5555
string(3) "bar"
5656
["orgname"]=>

0 commit comments

Comments
 (0)