Merge "set serialize_precision to 17, current PHP default"

This commit is contained in:
jenkins-bot 2015-10-28 01:52:29 +00:00 committed by Gerrit Code Review
commit e8a35d9c34

View file

@ -117,7 +117,7 @@ class PHPUnitMaintClass extends Maintenance {
// Bug T116683 serialize_precision of 100
// may break testing against floating point values
// treated with PHP's serialize()
ini_set( 'serialize_precision', 14 );
ini_set( 'serialize_precision', 17 );
}
public function execute() {