Update test for changed behaviour of GMP constructor

Closed GH-10160

Signed-off-by: George Peter Banyard <girgias@php.net>
This commit is contained in:
Niels Dossche 2022-12-23 15:29:09 +01:00 committed by George Peter Banyard
parent 0100dbdaf8
commit a24659e70c

View file

@ -5,7 +5,7 @@ gmp
--FILE--
<?php
$g = new GMP();
$g = gmp_init(0);
$g->{1} = 123;
$serialized = serialize($g);