Browse Source

MFH: fix test failures

PHP-5.1
Ilia Alshanetsky 21 years ago
parent
commit
d18cdaf6dd
  1. 2
      ext/mysqli/tests/009.phpt
  2. 4
      ext/mysqli/tests/bug33491.phpt

2
ext/mysqli/tests/009.phpt

@ -54,7 +54,7 @@ array(7) {
[4]=>
int(0)
[5]=>
int(0)
string(13) "-333333333333"
[6]=>
int(100)
}

4
ext/mysqli/tests/bug33491.phpt

@ -15,8 +15,10 @@ class DB extends mysqli
}
}
require_once dirname(__FILE__)."/connect.inc";
// Segfault when using the DB class which extends mysqli
$DB = new DB('localhost', 'root', '', '');
$DB = new DB($host, $user, $passwd, '');
$DB->query_single('SELECT DATE()');
?>

Loading…
Cancel
Save